What is static variable and static method?
Answer Posted / ahmad
Static variables are those variables that are declared with
static keyword of java.Static variables are declared once
into a class and are available entire class.Static variables
are common to all objects of class.Static variables can be
accessed by non-static methods.Whereas Static methods are
those which are declared with static keyword and can only be
accessed static variables.If we have Static method then we
can call it directly with class_name.And static variables
and methods both are related to class,whereas non-static
variables and methods are related to object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are loops in java?
What does nextint () do in java?
Is there a sort function in java?
Can a final variable be initialized in constructor?
What are design patterns and please explain?
Difference between abstract and concrete class ?
What is time complexity java?
Explain the difference between abstraction and encapsulation.
Can we write multiple catch blocks under single try block?
How destructors are defined in java?
How big is a boolean?
How to sort array in descending order in java?
What is super keyword explain with example?
Difference between arraylist and vector.
What is the scope or life time of instance variables?