What is the static import?
No Answer is Posted For this Question
Be the First to Post Answer
What is an inner class in java?
What are thread local variables?
Explain the difference between private, public, package and protected in java?
What's the base class in java from which all classes are derived?
What is covariant return type?
Why are generics used?
What are MalformedURLException and UnknownHost Exceptions and whey they will be thrown?
What are interfaces?
How to retrieve data from database in java using arraylist?
What does java stand for?
What is the format of Inner Class after it compiled?
interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?