What is non static block in java
Answer Posted / sujay
An instance block in a java program can be said to be a
non-static block. The scope of a static block is same as the
scope of that class, It will be loaded into the memory when
the class is loaded into the memory and unloaded at the time
of class unloading. But the scope of an instance
block(non-static block) is same as the scope of the object
of that class, it will be loaded into the memory when every
an objected is created and destroyed when that object is
destroyed. So, static block is created only once at the time
of class loading and globally available to all the objects
of that class where as a separate copy of instance block is
created for each object.
class MyClass
{
static
{
System.out.println("I am static, available for all
the objects of this class!");
}
{
System.out.println("I am non-static, available as a
separate copy for each object that is created from this
class!");
}
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is identifier with example?
What are the main uses of this keyword?
How would you dynamically allocate memory to an array?
How many types of operators are there?
What is Recursion Function?
Can I overload to string method
What is a pattern what is an anti pattern?
How can we make string upper case or lower case?
What is preparedstatement in java?
What is the difference between a vector & an array list?
What is the purpose of a parameter?
What are the three parts of a lambda expression?
What is the size of arraylist in java?
does java support pointers?
What are singleton services?