导航

2018年4月6日

摘要: Byte 类字节,属于Number。 1 public final class Byte extends Number implements Comparable<Byte> { 2 3 /** 4 * A constant holding the minimum value a {@code by 阅读全文

posted @ 2018-04-06 23:45 水狼渊 阅读(514) 评论(0) 推荐(0)

摘要: Boolean源码比较简单。 1 public final class Boolean implements java.io.Serializable, 2 Comparable<Boolean> 3 { 4 /** 5 * The {@code Boolean} object correspond 阅读全文

posted @ 2018-04-06 23:31 水狼渊 阅读(712) 评论(1) 推荐(0)

摘要: 总体阅读了Long的源码,基本跟Integer类类似,所以特别全部贴出源码,直接注释进行理解。 1 // final修饰符 2 public final class Long extends Number implements Comparable<Long> { 3 /** 4 * A const 阅读全文

posted @ 2018-04-06 21:35 水狼渊 阅读(768) 评论(0) 推荐(0)