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 |
How hashmap works in java?
How to call one constructor from the other constructor ?
Is string an object?
What is parameters example?
How do you execute a thread in java?
What is one third plus one third as a fraction?
What data type is a string?
Is it compulsory for a try block to be followed by a catch block in java for exception handling?
Can we define package statement after import statement in java?
What is get () in java?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
What is substring in java?