Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Can a class in java be private, if yes what are implementations of it? within the Java forums, part of the Software Development category; Can a class in java be private, if yes what are implementations of it?...
|
|||||||
|
|||
|
Re: Can a class in java be private, if yes what are implementations of it?
A normal class in Java cannot be private, but an inner class can be private. Inner classes are generally used in Swings to add listeners for various components.
Regards, Sahil. |
|
|||
|
Re: Can a class in java be private, if yes what are implementations of it?
we can't declare top level class as private(only public).we can declare inner classes as private.if declare any methods and variable declared in private class we can access those methods and variable with in that scope directly.if u want access out of that class by using constructor we can access.
|
|
|||
|
Java Inner Classes
class A { private a; class B { private b; void f() { b = a+a; // accessing pvt. var of A } public g(){ B myObj = new B(); myObj.f(); int x = myObj.b; // accessing pvt. var of A } } |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Inherit private members of base class | rahul.gupta | C and C++ | 10 | 09-24-2008 09:15 AM |
| How to inherit class in Java progamming | Geek_Guest | Java | 1 | 07-23-2007 05:30 AM |
| Private Forums for Privileged Members | admin | Site News & Announcements | 3 | 01-04-2007 11:45 AM |
| Private Forum for Contributors and Moderators | admin | Site News & Announcements | 3 | 06-17-2006 07:38 AM |