Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => JAVA => Topic started by: Khushi on January 03, 2007, 12:10:28 AM



Title: Java: Information Hiding
Post by: Khushi on January 03, 2007, 12:10:28 AM
Information hiding is a key feature of java. When declaring a variable or a method it can be one of four things: private, protected, or public or default. The way you specify the type is using one of the three keywords or none at all.

For example:

Code:
// Default 
int i = 0;

//public
public int i = 0;

Public: When you declare a variable public it means that it can be accessed anywhere in the program. If you inherit from that class you would have access to all of the public variables.

Private: When a variable is private it cannot be seen anywhere except for the class is instantiated in. If you use a class you will not be able to see any private data.

Protected: If a variable is protected you only have package access (useful when developing libs). That means that you will only see the variable in the package that it is instantiated in and all its subclasses.

Default: Default package access is achieved when there is no specifier (private, public, or protected). Default package access means that the variable is available within the package that it is created in but not in the package subclasses. Basically you can think of it as a package private.

When creating variables within a method you can only specify one keyword (final). You cannot create public, private, or protected, or even default variables. When you create an Object within a method it is only available within the method it is created in.