1、int i = 9;System.out.println("the value is " + (i>99?99.9:9)); 输出是什么? 2、几十亿个白名单,白天高并发访问,晚上会更新一次,怎么设计这个功能? 3、快排 4、 int func(int x){ int countx = 0; while(x){ x = x&(x-1); countx++; } return countx; } 输入x=9999,输出是多少 5、一个类三个属性,五个方法,实例化10次,内存中有多少个对象,多少个属性,多少个方法?jvm加载字节码文件流...