What is Co-Variant return type in method overriding?
Answer / harini
If the parent class method return type is object then child
class method return type need not be object. We can take
its child classes also.
The co-varient return types of no. class are
Byte/short/integer/long/float/double.
ex:
object-----string ----valid
number-----integer----valid
string------object----invalid
| Is This Answer Correct ? | 18 Yes | 0 No |
how many ways to create Thread and which one is good? runnable interface ot Thread class?
What is the difference between throw and throws?
How to re-get an object that is collected by garbage collector?
What is the static method?
How many digits is int32?
What is the range of the char type?
How GC (Garbage Collector) knows the objects reference is unused.Whether GC removes the unused object Parmanently or it maintains something.
why use interface? if interface declear a method implement in class. why direct implement method in class
What is connection class in java?
Explain differences between checked and unchecked exceptions in java?
how to convert Java project into Maven ?
What is thread life cycle?