What is the difference between:
public class A
{
private int x = 1;
A() {}
}
and
public class A
{
private int x;
A() { x = 1; }
}
, if any?
|
What is the difference between:
and
, if any? |
|||||||||||||
|
|
If you are asking from a practical point of view, the difference is that with the second form of initialization you will have to repeat it for every constructor that you write, were you to write many overloaded constructors. |
|||||||
|
|
|||
|
|
|
From JLS 12.5:
Further down it states:
In essence, the JVM creates memory for variable |
|||||
|
|
|
Effectively nothing. Variables at class-scope will have a default value initialised if you do not initialise it yourself. For the It is important to note that this does not hold true for local primitives, and that you should always initialise these to a value before use. |
|||
|
|
1/ The written assignments happen in different times during initialization - the constructor is the last thing executed during instance initialization. 2/ There is implicit initialization to zero for the x variable provided by compiler. So both assignment are redundant. |
|||
|
|
|
the difference is that in the second you can have a constructor
and if you add the second constructor and you forget to call the this() then you dont initialise your x leaving it at its default. So i suggest you use the first one as it is inhertly less bug prone. |
|||
|
|
|
In the first case,
In the second case, you again dont need that constructor which is setting the variable to 0. It can be needed if you want to give some value other than 0, say |
||||
|
|
|
In this case, nothing. If x was static, then it would not get initialised, until "new A();" was coded. Seeing as x is not static, the processing is effectively the same, however there are nuances in the JLS that you should be aware of, especially if A extends another class, for example. If you did something with x in the constructor BEFORE it was initialised (as in example 2), e.g. int b = x; do not expect b to be 1. Off the top of my head, you'll either get an error/ warning on the compiler, or b would equal zero. |
|||
|
|