Initialization of local variable
Source code
1
class
InitializationOfLocalVariable {
2
3
void
initialized() {
4
int
localVar = 89;
5
this.hashCode();
6
}
7
8
void
notInitialized() {
9
int
localVar;
10
this.hashCode();
11
}
12
13
}
Bytecode
Java compiler version:
21
Other examples
Main page