Is java still necessary?
No Answer is Posted For this Question
Be the First to Post Answer
what is meant by UP& DOWN casting in java?
What is an argument in java?
What is the purpose of java?
What are assembly attributes?
what is meant by abstract class?
What happens when main () method is declared as private?
What is a method signature java?
I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose.
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 } }
How do you reverse sort in java?
In which order the iterator iterates over collection?
Why multiple inheritance is not supported by java?