Android try/catch/finally/setError JAVA

try/catch/finally/setError Kulanımı ve örnek kodlar



try
{
    //hesaplanmak istenen ifade      
}

catch          
{
    //Bir hata türü tespit edilince verilmesi gereken mesaj
}
        
catch          
{
    //başka Bir hata türü tespit edilince verilmesi gereken mesaj
}
        
finally
{
    //her durumda çalıştırılacak olan kod parçası
}

name.setError();
//Edit Textlere hata mesajı çıkartma
return;

//Kod örnek:
if(name.getText().toString().equals("")) {
                    name.setError("Boş");
                    return;
                }

//Kod örnek 2:
try {
            int a = 42 / 0;
        } catch (ArithmeticException MatHata) {
            System.out.println(" İşlem yapılırken matematiksel bir hata oluştu :" + MatHata.getMessage());
        }

Related Posts

Android try/catch/finally/setError JAVA
4/ 5
Oleh