what is mean by overriding in which situation we wil use?
Answer Posted / neema
If we have same method name in the super class as well as
in the sub class, then the method in the subclass is said
to override the method in the super class.
| Is This Answer Correct ? | 25 Yes | 4 No |
Post New Answer View All Answers
Is java a compiler?
What is import java util arraylist?
When is the finalize() called?
How many bytes are a float?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
What is int short for?
What are data types in oop?
What are the two ways in which thread can be created?
How many types of the indexof method are there for strings?
How long will it take to learn java?
What is the function of character?
What does string [] args mean?
Does set allows null in java?
What is byte [] in java?
design an lru cache in java?