static inner classes means..?

Answer Posted / ranganathkini

static inner classes are nested class members marked by the
"static" keyword. These classes have access to the enclosing
class's static members but no access to the non-static
members of the enclosing class.

Static classes do not depend on an instance of their
enclosing class and hence they can be instantiated without
instantiating their enclosing class.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the parts of methodology?

549


What is java autoboxing?

541


Where are register variables stored?

594


What are static blocks in java ?

617


How do you use compareto?

551






What is the difference between overriding and overloading in OOPS.

567


What is mean by collections in java?

569


How do you bind variables?

533


How many bits is a word?

571


Say you want to store the information about a number of pets in an array. Typical information that you could store for each pet (where relevant) would be • Breed of animal • Animal's name • Its birth date • Its sex • Whether it has been sterilised or not • When it is due for its next inoculation • When it last had its wings clipped For each type of pet (eg. dog, cat or bird) you would typically define a class to hold the relevant data. Note: You do not need to implement these classes. Just answer the following questions. 3.1.1 What would be the advantage of creating a superclass (eg. Pet) and declaring an array of Pet objects over simply using an array of Objects, storing each of the instances of the different pet classes (eg. Dog, Cat or Bird) in it? 3.1.2 Would you define Pet as a class or as an interface? Why? (2) (2)

1351


How do you clear a list in java?

606


What happens if we override only equals?

584


If we allocate the memory using 'new' & de-allocated using 'free' then what will happen?

599


What are format specifiers in java?

601


Is java still relevant?

502