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 does java stand for?
What is the different between get and post?
What are three ways in which a thread can enter the waiting state in java programming?
When will you define a method as static?
What is function overriding and overloading in java?
Explain about field hiding in java?
What is meant by stack and queue?
Which method cannot be overridden in java?
How to restrict a member of a class from inheriting by its sub classes?
What makes a function well defined?
Can an interface have a class?
How do I get 64 bit java?
Is age a discrete variable?
Why parsing is done?
How to change value in arraylist java?