What is the difference between exception and error in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is empty string literal in java?
What is a nested list?
Can we create our own wrapper class in java?
Enlist diffrent types of inheritance supported by java?
where to use join method and explain with real time senario?and programatical explenation also..
List the different types of classloaders in java.
What is Java Classloader?
1 Answers Phantom Technologies,
What are parsing rules?
What are the three parts of a lambda expression?
Why java doesn’t support multiple inheritances?
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(); }
Can we call the run() method instead of start()?