java的string类和基本类型封装类 使用等号时 是传值的而不是引用。 例如 integer是基本类型 int的封装类 integer i=9; integer a=i; i=10; 以后 a=9 i等于10.