Java gooit Trefwoord

❮ Java-trefwoorden


Voorbeeld

Geef een uitzondering als de leeftijd onder de 18 is (print "Toegang geweigerd"). Als de leeftijd 18 jaar of ouder is, druk dan "Toegang verleend" af:

public class Main {
  static void checkAge(int age) throws ArithmeticException {
    if (age < 18) {
      throw new ArithmeticException("Access denied - You must be at least 18 years old.");
    }
    else {
      System.out.println("Access granted - You are old enough!");
    }
  }

  public static void main(String[] args) {
    checkAge(15); // Set age to 15 (which is below 18...)
  }
}


Definitie en gebruik

Het throwssleutelwoord geeft aan welk type uitzondering door een methode kan worden gegenereerd.

Er zijn veel soorten uitzonderingen beschikbaar in Java: ArithmeticException, ClassNotFoundException, ArrayIndexOutOfBoundsException, SecurityException, etc.

Verschillen tussen throwen throws:

throw throws
Used to throw an exception for a method Used to indicate what exception type may be thrown by a method
Cannot throw multiple exceptions Can declare multiple exceptions
Syntax:
  • throw is followed by an object (new type)
  • used inside the method
Syntax:
  • throws is followed by a class
  • and used with the method signature

Gerelateerde pagina's

Lees meer over uitzonderingen in onze Java Try..Catch Tutorial .


❮ Java-trefwoorden