发狂专题

Java中令人发狂的程序语言的特性

Java的Integer cache Java代码 Integer foo = 1000;  Integer bar = 1000;    foo <= bar; // true  foo >= bar; // true  foo == bar; // false    //然后,如果你的 foo 和 bar 的值在 127 和 -128 之间(包括)  //那么,其行为则改变了: