What is difference between equal and == in java?
No Answer is Posted For this Question
Be the First to Post Answer
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What are keywords in java?
What is Interface?
What is the difference between inheritance and encapsulation?
What is finally in exception handling?
Can a boolean be null java?
What is the difference between double and float variables in java?
What is prefix of a string?
java is pure object-oriented programming language?why it is platform independent.
How is it possible for two string objects with identical values not to be equal under the == operator?
What is jee6?
What are the features of junit?