What is default specifier ??? Use of default specifier ???
Answers were Sorted based on User's Feedback
Answer / hemanta paudel
Java provide a default access specifier which is apply when
programmer does not use other specifier.
The default specifier allow to access only with in the same
package. If class A and class B are in same package
(Mypackage) then class A can access class B and vice-verse.
class A
{
-----------
----------
---------
}
class B
{
A a=new A();
--------
--------
}
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / david sandyp
default is the access given to the class when no access specifier is mentioned ..
Default is not public but it is almost like public.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / prativa mohapatra
Java provides a default specifier which is used when no
access modifier is present. Any class, field, method or
constructor that has no declared access modifier is
accessible only by classes in the same package. The default
modifier is not used for fields and methods within an
interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / malli
default specifier:
with out mention any access specifier (private,
public,protect) is called default specifier.
ex://default// class Manager
{
}
use:
we can assign any default access specifier to particular
classes those classes we can use with in same package.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is an inner class in java?
what is the difference between String s="hello"; and String s=new String("hello");?
Can you give few examples of final classes defined in java api?
What are possible key words, we can use to declare a class?
What are the advantages of exception handling?
Can we place the any object to key attribute of HashMap<key,value>?
What is a databasemetadata?
How do you reverse sort a list in java?
Why put method is used?
What is object of class in java?
What types of index data structures can you have in java?
if am have 100 threads(for ex:T1,T2---T100) how we give priority to these threads and how the system excute these threads