For class CFoo { }; what default methods will the compiler generate for you>?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between static and abstract class?
Which oo concept is achieved by using overloading and overriding?
What is hashmap and map?
How do you escape sequences in java?
1.what is the exact difference between applet and frame? 2.Do we use main method in frames?
What are static methods?
What are constructors in java?
What is run-time class and system class? what is their purpose?
What is == in java?
In what circumstances, compiler will supply a default constructor for a class?
What do you mean by append?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }