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
Explain the difference between extends thread vs implements runnable in java?
What is equlas() and hashcode() contract in java? Where does it used?
What is better - 'bit-shift a value' or 'multiply by 2'?
Which java ide is used the most?
What is the use of java?
What is the difference between overriding and overloading in OOPS.
What are computer functions?
What is oop in java?
What is preparedstatement in java?
State differences between C and Java?
What is instance means in java?
What are constants and how to create constants in java?
How do you add an element to a hashset in java?
Does isempty check for null?
What is the function of log?