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 simpletimezone class in java programming?
Is string is a data type?
How many threads can I run java?
What is application tier?
What is the best way to findout the time/memory consuming process?
What is busy spin, and why should you use it?
What is unicode full form?
Which list does not allow duplicates in java?
Explain the difference between call by refrence and call by value?
What is try-with-resources in java?
What is a hashmap used for?
What are bind parameters?
What is oops in java?
how can i use a nonsynchronized hashtable?
What is protected access modifier?