I Have a class abstract with one abstract method, so that
method should override in the subclass, but i dont want to
override, if i am not override what will happen? If
compilation will occur then i dont want to give compilation
error, then what we need to do???
See the sample program.
public abstract class AbstractExample {
public abstract void sampleMethod();
}
public class AbstractExampleImple extends AbstractExample {
}
Answer Posted / kvsravindrareddy
Normally abstract method should implement in the subclass,
otherwise application will give compilation error. If you want
to without compilation error, then subclass also make as a
abstract class, application will not give any compilation
error.
See the below sample code.
public abstract class AbstractExample {
public abstract void sampleMethod();
}
public abstract class AbstractExampleImple extends
AbstractExample {
}
Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
Why is java called java?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?
When is the finalize() called? What is the purpose of finalization?
Write code of any action class?
What is an 8 bit word?
Write code to implement bubble sort in java?
What is an inner class in java?
How to retrieve data from database in java using arraylist?
What are the basic concepts of OOPS in java?
Differece between class and generic class?
explain local datetime api in java8?
What is a variable declaration?
What is ‘has a’’ relationship in java?
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 the difference between assignment and initialization?