Skip to content

Instantly share code, notes, and snippets.

View rjdkolb's full-sized avatar

Richard Kolb rjdkolb

View GitHub Profile
@rjdkolb
rjdkolb / App.java
Last active August 29, 2015 14:19
Java P Byte Code
public class App {
public void createPrimativeInteger(){
int x = 100000000;
}
public void createObjectIntegerNonAutoBoxing(){
int x = 200000000;
}
public void createObjectIntegerAutoBoxing(){
Integer x = 300000000;