Java Program To Create Interface

01. Example: interface iAmInterface { static final String name = "Java"; public void displayData(); } class iAmClass implements iAmInterface { public static void main(String[] args) { iAmClass obj = new …

Read more

Java Program to Throw Exception

01. Example: public class throwErrorExample { static void throwErrorMethod(int number) { if (number < 0){ throw new ArithmeticException("There is something wrong."); } else{ System.out.println("Check positive and negative number."); } } …

Read more