whays is mean by inner class?

Answer Posted / pops

class inside a class.doesn't allow static
declarations.moslty you can make your code less vulnerable
to security attacks.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In java how do we copy objects?

557


What is string array?

584


What is private static in java?

581


Does constructor creates the object ?

588


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 subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1355






How does arrays sort work in java?

607


How does list work in java?

512


What are the problems faced by java programmers who don't use layout managers?

558


How variables are stored in memory?

541


How do you include a string in java?

526


What is the purpose of the runtime class in java programming?

570


What is meant by inheritance and what are its advantages?

583


What are locale settings?

554


What is difference between static and abstract class?

524


What are java packages? What is the significance of packages?

575