0
Can anyone explain me elaborately why the first code working and 2nd one not working?
class Actors{ public void nature(){ System.out.println("dialogue"); } } class Vadivelu{ public static void main(String []args){ Actors v = new Actors(){ @Override public void nature(){ System.out.println("silakkidumma"); } }; v.nature(); } }*/ class Actors{ public void nature(){ System.out.println("dialogue"); } } class Vadivelu extends Actors { public static void main(String
1 Answer
+ 2
You need to attach the code with the question, if you do it like this as you can see your code is cropped because of the limit on the question description character count.