what is meant by package in java?
Answers were Sorted based on User's Feedback
Answer / thamarai selvi
Package is the java mechanism for grouping the classes..
| Is This Answer Correct ? | 20 Yes | 2 No |
Answer / ilavarasi
1.A package is a grouping of related types providing access
protection and name space management.
2.The types refers to classes, interfaces, enumerations,
and annotation types.
3.Enumerations and annotation types are special kinds of
classes and interfaces, respectively.
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / manoj kumar sahu(secon pvt.ltd
Package is nothing but it can be call as container of all
related class.All *.class files are stored in a package for
that we can implement the require *.class files in our
program.In java one package can be implement by using the
keyword import.The syntex is
import java.<packagename>.*;
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / raja qaiser
package is container which contain difference classes,using
package we use functions of different classes.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sonali
package is collection of classes and interfaces, that
provides a high level layer of access protection and nams
space mgt. Also it is a way of grouping of variety of
classes and interfaces together.
| Is This Answer Correct ? | 1 Yes | 0 No |
Are strings immutable in java?
Can you call a constructor within a constructor?
Why java does not supports multiple inheritance?
How do I convert a numeric ip address like 192.18.97.39 into a hostname like java.sun.com?
We can write any Java Logics in our JSP. Then why we are using servlets(Controller Layer) to interact with the DAO ?
How to prevent a field from serialization ?
What are Encapsulation, Polymorphism and Inheritance?
Explain about assignment statement?
diff. b/w JAVA and javascript...
What data structures are used to perform recursion?
0 Answers Akamai Technologies,
Is array a class in java?
What's the difference between an abstract class and interface in java?