/*
-XX:AutoBoxCacheMax=300
*/
public class AutoBoxCacheMax
{
public static void main(String[] args)
{
Integer a = 200;
Integer b = 200;
System.out.println(a == b);
}
}
========================
-XX:AutoBoxCacheMax=300
/*
-XX:AutoBoxCacheMax=300
*/
public class AutoBoxCacheMax
{
public static void main(String[] args)
{
Integer a = 200;
Integer b = 200;
System.out.println(a == b);
}
}
========================
-XX:AutoBoxCacheMax=300