How to use string tokenizer class.
No Answer is Posted For this Question
Be the First to Post Answer
What is default exception handling in java?
What is the difference between jfc & wfc?
how to make hashmap object as synchronized object?
What is the size of string?
Give some features of interface?
What is the use of arraylist class in java?
Can set contain duplicates?
What is the mapping mechanism used by java to identify IDL language?
Explain the difference between comparator and comparable in java?
Is list ordered in java?
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 } }
Can we make main() thread as daemon?