Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Why are inner classes required?

Answers were Sorted based on User's Feedback



Why are inner classes required?..

Answer / qamrun nisa

when an inner class is defined it is a member of the outer
class in much the same way as other members like attributes,
methods and constructors. When we access private data
members of the outer class, the JDK compiler creates
package-access member functions in the outer class for the
inner class to access the private members. This leaves a
security hole.

In general we should avoid using inner classes. Use inner
class only when an inner class is only relevant in the
context of the outer class and/or inner class can be made
private so that only outer class can access it. Inner
classes are used primarily to implement helper classes like
Iterators, Comparators etc which are used in the
context of an outer class.

Is This Answer Correct ?    7 Yes 0 No

Why are inner classes required?..

Answer / shubha patil

inner class is basically used for binding the one class into
another class.

Is This Answer Correct ?    0 Yes 1 No

Why are inner classes required?..

Answer / mohammad aleemuddin

Inner classes are mainly used to encapsulate the data

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More Core Java Interview Questions

What is a buffer in computer?

0 Answers  


Can an interface extend another interface?

0 Answers  


What is reflexive association?

1 Answers   Infogain,


how to fing linkedlist is circular or not?

1 Answers   TCS,


Why does java doesnot support multiple inheritance?

5 Answers   TCS,


what is the output??????? public class multireturn { public(int assign x ( int x) { if(4==x) { return 7; } else if (7=x+3) { return 6; } return 5; } }

3 Answers   TCS,


How you can force the garbage collection?

0 Answers  


Give a brief description of java socket programming?

0 Answers  


Explain what do you mean by functional overloading in java?

0 Answers   Maveric, Verifone,


What language is an assembler written in?

0 Answers  


What is meant by distributed application? Why are we using that in our application?

0 Answers  


Explain the use of shift operator in java. Can you give some examples?

0 Answers  


Categories