Can we inherit the constructor in a Class?please give one
example.
Post New Answer View All Answers
Is java 1.7 the same as java 7?
What does the exclamation mark mean in java?
What is type inference in java8?
What is nested loop? What is dangling else condition in it?
whatis Home interface and Remoteinterface? with example?
How do you test a method for an exception using junit?
Does java allow default arguments?
What is class forname?
What is module in project?
Describe the various concepts related to object oriented programming (oop).
What are the major drawbacks of external iteration?
What is difference between final and immutable?
which pattern is default in scanner package?
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
Explain the difference between intermediate and terminal operations in java8?