What are the limitations for static method?
Answer Posted / puneet
Static in context of java is something which is executed at
the time when the class is loaded by either bootstrap loader
or another loader into memory.These are basically for
initializations of the variables which wil be used by all
the instance variables.Say we need ot restrict how many
objects whill be created of the class store the no.of
objects created in a static variable and everytime the
object is called thestatic variable is incremented and as
soon as it reaches a limit restrict it by some logic.
The static methods can be called by the object refrence of
the class or the class name, they cannot use instance
variables or instance methods, they are the part of the
class and not instance, the static variables are stored in
registers and remain in the memory as long as the clas in
unloaded.
| Is This Answer Correct ? | 10 Yes | 10 No |
Post New Answer View All Answers
What is the synchronized method modifier?
What is a treeset class?
Can a method inside a interface be declared as final?
Explain the use of volatile field modifier?
What is the mapping mechanism used by java to identify IDL language?
whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net
What will be the output of round(3.7) and ceil(3.7)?
Describe what happens when an object is created in java ?
What java is used for?
How to perform merge sort in java?
What is a hashmap used for?
How do you test a method for an exception using junit?
What is a classloader in java?
Explain about collection interface in java?
What do you meant by active and passive objects?