What are the override methods in Object class?
Answers were Sorted based on User's Feedback
Answer / royal
There r total 11 methods r there..in that 11 only 5 methods
are override methods reaming r not override methods. becoz
those r final methods.
Override Methods
=====================
clone
toString
equals
hashCode
finalize
| Is This Answer Correct ? | 30 Yes | 1 No |
Answer / koushik
override the toString() method in object class.
| Is This Answer Correct ? | 13 Yes | 2 No |
make a method which any number and any type of argument and print sum of that arguments.....
What is a wrapper method?
What is difference between printf and scanf?
How to optimize the javac output?
What is the difference between Byte stream and Charecter Stream?
Why all programming languages have main as a execution starting point?
What is * argv?
How many types of exception can occur in a java program?
How is string stored in java?
we know that every java prog must follows OOPS Principles. Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation? class a{ public static void main(String args[]){ System.out.println("Hello World"); } }
strings in java are objects.why?
Q) I have a ArrayList object, in that object i have added 5 integer values, 5 float values, 5 string values. Now question is how can delete particular type of data ( i.e all int values or all float values or string values) in that list object at a time?