wHAT IS DEFAULT SPECIFIER IN JAVA
wHAT IS DEFAULT CONSTRUCTOR IN JAVA
wHAT IS DEFAULT METHOD IN JAVA
Answer Posted / vipin dhiman
in java default specifier is public but within the
samepackage.due to this property of public within same
package we have to define public before the main method
bcoz main has to be taken from jdk which is like the
different package. So if we want to anythig accessing to
the diffrent package we have to declare that with the
public keyword explicitly.
default constructor in java is same name of the class whose
object has to be declared.
example
class v
{
public static void main(String vip[])
{
System.out.println("i am vip");
}
in this default constructor is v();
as much as i know ,there is no concept of default method
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of methodology?
Does windows 10 need java?
What do you mean by compiler?
What are the differences between graph and tree?
What is computer compiler?
How dead lock situation occurs in java and how you can identify it?
Is void a data type in java?
What is args length in java?
How to perform bubble sort in java?
What is null statement?
Is java a virus?
What methods are used to get and set the text label displayed by a button object?
Can you tell me range of byte?
What is the output of the below java program?
If a method is declared as protected, where may the method be accessed in java programming?