Sobat tiap buat aplikasi harus ada method berikut ini contohnya
/**
* Demo overloading method
*
* @author arepide, [arepide.blogspot.com]
* @version 1.00
*/
public class Method {
int Test() {
return 1;
}
int Test(int a) {
return a;
}
int Test(double a, int b) {
return b;
}
int Test(int i, double j) {
return i;
}
// Ini akan error, sudah didefinisikan di method sebelumnya
//void Test(int x, double y) {
//}
}