what is the reason behind non static method cannot be
referenced from a static Context?
Answers were Sorted based on User's Feedback
Answer / srinivaskumar.nimmana
static method or static variable has special memory called context of class. it is allocate before execution. but in case of non-static method memory allocate at the time of executing.
so clearly static method is first loaded at the time of static method loading non-static method is not available to the static method because it is not loaded.
when non-static is loaded at that time static is already loaded.so static method is always available to non-static vice versa not possible
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sadikhasan palsaniya
static variable and method refer to the class variable and
method and non static method can refer to particular object
and if static method can permit to access non static method
then how can recognize that method belong which object
that's why not accessible.
if any mistake welcome and correct me!!!!!
| Is This Answer Correct ? | 3 Yes | 1 No |
What do you mean by platform independence? What is an interface?
Explain the difference between abstraction and encapsulation.
what is difference between String buffer and String builder?
Explain treeset?
Explain thread in java?
What is the method in java?
Explain the difference between the public, private, final, protected, and default modifiers?
Explain 5 features introduced in jdk 1.7?
Do extraneous variables affect validity?
Why operator overloading is not in Java?
what is jdk1.5 features?
How do you implement tree mirroring in java?