where final and static variable stored?
Answers were Sorted based on User's Feedback
Answer / sadikhasan palsaniya
Code of method and constructor or static and final field of
the class are store in "Method Area" which is non heap Memory.
| Is This Answer Correct ? | 19 Yes | 5 No |
Answer / pradeep reddy
Final and staic variable is stored in Method area which even stores the class structure like method,constructor and static fields.Method area is a non heap memory.
| Is This Answer Correct ? | 8 Yes | 4 No |
static and local variable are stored in stack memory,
in case of final variable it is dependent, if final variable is instance it stored in heap, if static it is stored in stack.....
| Is This Answer Correct ? | 3 Yes | 15 No |
Need to use public,static keywords in main function?
What is static synchronization?
What is the need of "creating and throwing an UserdefinedException" when the "Exception" class is already available?
Explain about abstract classes in java?
What is the best way to findout the time/memory consuming process?
How many Java environments are there?
1 Answers Phantom Technologies,
What is the difference between public, private, protected, and friend access?
What is not thread safe?
What java ide should I use?
What is this keyword in java?
Explain an intermediate language?
What is a class in java?