摘要:
String String 不是基本数据类型,Java中的所有字符串(例如"abc" )都被实现为此类的实例。 String对象是不可变的。 public boolean equals(Object anObject) public char charAt(int index) public int 阅读全文
摘要:
基本类型包装类 将基本数据类型封装成对象。 用于基本类型和字符串之间的相互转换。 基本数据类型 包装类 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boole 阅读全文