Contoh Coding
Contoh Coding
Inheritance (Perwarisan)
Contoh
class Vehicle {
protected String brand = "Ford";
public void honk() {
System.out.println("Tuut, tuut!");
}
}
EXCEPTION
Contoh
class Exceptions {
public static void main(String[] args) {
String languages[] = { "C", "C++", "Java", "Perl", "Python" };
try {
for (int c = 1; c <= 5; c++) {
System.out.println(languages[c]);
}
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output
1. C++
2. Java
3. Perl
4. Python
5. java.lang.ArrayIndexOutOfBoundsException: 5
Fatin Nur Farisha J33STM18F026
POLIMORFISME
Contoh