Autoboxing
Source code
1
class
Autoboxing {
2
3
int
m1(String str) {
4
Integer v = str.hashCode();
5
return
v;
6
}
7
8
int
m2(String str) {
9
int
v = str.hashCode();
10
return
v;
11
}
12
13
}
Bytecode
Java compiler version:
21
Other examples
Main page