What is default specifier ??? Use of default specifier ???

Answers were Sorted based on User's Feedback



What is default specifier ??? Use of default specifier ???..

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

What is default specifier ??? Use of default specifier ???..

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

What is default specifier ??? Use of default specifier ???..

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

What is default specifier ??? Use of default specifier ???..

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

Post New Answer

More Core Java Interview Questions

How to make a method thread safe without using synchronized keyword?

8 Answers   Persistent, Societe Generale,


transaction attributes ?

2 Answers  


What are init(), start() methods and whey they are called?

2 Answers  


Do I need java on my computer?

0 Answers  


What is the difference between reader/writer and inputstream/output stream?

0 Answers  






What are the skills required for core java?

0 Answers  


Java is based on pass by reference or pass by value ..

6 Answers   L&T, Wipro,


IS method overriding is Duplication of Methods?

5 Answers   CybAge,


What is boolean false?

0 Answers  


Can we have multiple classes in single file ?

0 Answers  


What are different type of access modifiers?

3 Answers  


How do you use find and replace?

0 Answers  


Categories