What is a default package ?
Answers were Sorted based on User's Feedback
Answer / nithya
A default package is the package which is included
automatically when the class is created. One such example is
java.lang package.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / vishwanath
A default package is the package, which a java class
belongs to, when theres no explicit package statement like
package foo;
----------
eg:
This class below is set to belong to the default package.
class Foo
{
}
-------------
Design considerations:
Its not a good design choice though to have it this way,
a java class belonging to the default package
Reason:
1) Bad modularizing
2) problems with access specifiers arise
etc...
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / kanchan bangar
package is a collection of classes.
And default package is package in which classes are
included already.
we need not create the new package.
If we are enter only package name then all the classes in
that default package we can used.
example:-
default package:-java.lang
| Is This Answer Correct ? | 2 Yes | 4 No |
Is it compulsory for a try block to be followed by a catch block in java for exception handling?
What is string substring?
What does snprintf return?
How to make a class immutable?
What data structures are used to perform recursion?
0 Answers Akamai Technologies,
What are "methods" and "fields"?
Suppose there is a System A which gives some output. This output is used as input by system B. The rate at which System A produces is faster than the rate at which system B consumes it. How can you improve this?
What is onClassLoader in java?
Difference between Choice and a List?
What is variable explain?
What is difference between equals and hashcode method?
Different types of modifiers?