Method to define the packages in java programme, JAVA Programming

Assignment Help:

Q. Write the method to define the packages in java programme. Explain.

Ans. Package: When we work on a project we have to break our programme in several classes. To organize our classes we use packages. The package is both a naming and visibility control mechanism. Package is a collection of classes and interfaces which are interrelated. With the help of package, it is possible to give same names to more than one class provided; they are defined in different packages. A single package cannot contain two classes with same name. Programmes are organized as sets of packages. Each package has its own sets of sub packages, which helps to prevent name confections. A top level package is accessible outside the package is hierarchal. The members of a package are class and interface type and sub classes. A package in java is an encapsulation mechanism that can be used for to group related class, interface and sub packages. For small programmes, a package can be unnamed or have a simple name, but if code is to be widely distributed, unique package names should be chose. This can prevent to the conflicts that would otherwise occur if two development groups happened to pick the same package name and these packages were later to be used in a single programme. If we do specify a package for a java class then that class will be the part of the default package of java called as unnamed package. But this requires that every class must have a unique name to avoid collision.

How to define a package

To create a package, include a package command as the first statement in a java source file. Any class declared within that file will belong to the specified package. The package statement defines a name space in which classes are stored. If one omit the package statement, the class name are put into the default package, which has no name and is called as unnamed package. The package statement has the following syntax:

Package package _ name

Java uses file system directories to store packages. Remember that the case is significant, and directory name must match the package name exactly. More than one file can include the same package name exactly. More

Package p 1;      // package declaration

Class A                // class declaration

.................     // body of class A

.....................

}

Package is a keyword; p 1 is the package name in which class A is to be stored.

Example 1:

Package p 1;

Class example _ 1

{

Public static void main (string args [])

 {

System. out . print ln ("first package programme")

}                                              

} we have assumed that the current folder is (c:\java >)

Output

First package programme

Note: If we compile the above programme with the folder p 1 will be created automatically and the class file of the above programme will be saved in this folder. But if we do not compile with d option this it is our duty to create the p 1 folder and place the class file in that folder (.) directs the compiler the to create the p 1 folder in the current folder. We have created two files (Box. Java and box _ demo. Java ). The box _ demo. Java contains the main programme, so we will return with this class name.

Step 1

We have to create the java files in the c:\ java & box _ demo. Java)

Note 1: we can't run a java programme directly through class name if it is a part of a package. To run this programme we must specify the (pl. Java box _ demo)

If we run the above programme from any other folder than the current folder then it will not run. By default the java run time system uses the current run time directory as its starting point. Thus if our package is in the current directory, as its starting point or a subdirectory of the current directory, it will be found. But to run the above programme from any other folder we have to set the class path using the command SET CLASSPATH = % CLASSPATH %; C : TEST on command promote. CLASSPATH is a environment variable. We have to type this command every time when we start the computer for the first time. But if we we put this command in auto exec, bat file in the root directory then there is no need to type this command again & again. We can also run the programme without setting the CLASSPATH environment variable to do this type.


Related Discussions:- Method to define the packages in java programme

2D arrays, write an application that stores at least five different departm...

write an application that stores at least five different department and supervisor names in a two dimensional array

Write javascript code to scans the list of courses , In an external JavaScr...

In an external JavaScript file write code that, upon form submission, scans the list of courses for a match (case should be insensitive). If a match is found, change the div's back

Mobile android application, Project Description: Overview I am seekin...

Project Description: Overview I am seeking an Oracle ADF mobile app and web service to be created that takes a list of contacts stored on an Android mobile phone or tablet an

Minimum Passing Credential, Alia is appearing for the board exams. In order...

Alia is appearing for the board exams. In order to qualify for the next class Alia need to get exactly X credits. In current semester Alia has to study N number of subjects, and ev

Windows registry, need a java program that can read and display the values ...

need a java program that can read and display the values from a windows registry

Java expert with tomcat tuning experience required, Java expert with tomcat...

Java expert with tomcat tuning experience needed Project Description: Want a Java expert to fix memory issues with tomcat. I need School java project - Threads Programm

Unix-like CLI in Java (simple), The assignment is implementing a CLI in Jav...

The assignment is implementing a CLI in Java with several usable commands, using Threads.

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd