What is the difference between stringbuffer and stringbuilder class?
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 three types of loops in java?
Can we override private methods?
What is a Java package and how is it used?
Is simpledateformat safe to use in the multithreaded program?
What are the three best choices for a development environment?
how system.out.println() works?
How can we handle runtime exceptions? write one sample program? Can we write runtime exceptions beside the throws key word? if yes write sample program?
Is null a string or object in java?
What is the middleware?
What are the types of arrays in java?
Does string is thread-safe in java?