摘要: 字符串:String、StringBuffer、StringBuilder 阅读全文
posted @ 2016-10-14 23:29 ZYsky 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Scanner类,用于接收键盘录入数据 阅读全文
posted @ 2016-10-14 23:28 ZYsky 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Object类:类层次结构的根类。每个类都使用 Object 作为超类,每个类都直接或者间接的继承自Object类。 阅读全文
posted @ 2016-10-14 23:18 ZYsky 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Object 阅读全文
posted @ 2016-10-14 22:44 ZYsky 阅读(69) 评论(0) 推荐(0) 编辑
摘要: BigInteger类 BigInteger:可以让超过Integer范围内的数据进行运算构造方法: BigInteger(String val) 代码示例:BigInteger bi = new BigInteger("2147483648"); 成员方法: (1)public BigIntege 阅读全文
posted @ 2016-10-14 21:45 ZYsky 阅读(188) 评论(0) 推荐(0) 编辑
摘要: System类 System类包含:一些有用的类字段和方法,System类不能被实例化。 成员方法: (1)public static void gc():运行垃圾回收器(这只做了解) 注意:执行System.gc()前,系统会自动调用finalize()方法清除对象占有的资源,通过super.fi 阅读全文
posted @ 2016-10-14 21:39 ZYsky 阅读(115) 评论(0) 推荐(0) 编辑