What is finalize()? Is finalize() similar to a destructor?
No Answer is Posted For this Question
Be the First to Post Answer
What are heap memory and stack memory and what are memory tables.
Explain what access modifiers can be used for methods?
What is sortedmap in java?
What is javac in java?
What is hash code collision?
What is computer compiler?
Is linkedlist thread safe in java?
Why do you canvas?
Explain reverse a linked list recursive java solution?
What is the is a and has a relation ship in oops concept in java?
What is protected access modifier?
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(); }