what are depricated methods ?
Answers were Sorted based on User's Feedback
Answer / lavanya
methods that r not in use now though they were defined
initially . this is done in order to provide a secure and
robust language
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / d. kalaivani natarajan
You can not avail deprecated methods in the furture
versions.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vijay
methods which r not safe to use are called deprecated
methods
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kalpit
Threads suspend,resume and stop are eg of deprecated methods
and are not safe to use.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is constructor and its types?
What is a final class in java?
How can we make sure main() is the last thread to finish in java program?
What is nullpointerexception?
Explain about field hiding in java?
How transient variable is different from volatile variable?
What is the purpose of the main method?
What is connection class in java?
Explain spliterator in java8?
Explain what are final variable 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 } }
What is string [] java?