Can a class inherit the constructors of its superclass?
Answer Posted / devarathnam
Hi... No.constructor cannot be inherited from super class.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is the relationship between clipping and repainting under awt?
Are arrays static in java?
If a class is declared without any access modifiers, where can the class be accessed?
Can we access the non-final local variable, inside the local inner class?
What is classname class in java?
How can we create a synchronized collection from given collection?
Is static variable stored in heap?
Explain jvm, jre, and jdk?
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
How do you reverse a string in java without using string buffer?
What is vector?
Difference between ‘is-a’ and ‘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 will happen to the exception object after exception handling?
How can you set the applet size?