JDK 源码解读之 Number类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDK 源码解读之 Number类相关的知识,希望对你有一定的参考价值。


public abstract class Number implements java.io.Serializable {

  Number类有修饰符 abstract 。表明Number类定义了一些方法,并没有具体实现,需要子类自己实现,关于abstract ,quaro上一个答案写的很清晰:

    The “abstract” Keyword

  1. The keyword abstract can be used on classe declaration. For example abstract MyClassX (…);.
  2. The keyword abstract can be used on method declaration. For example abstract int f (…);.
  3. When a class is declared abstract, it cannot be instantiated.
  4. When a method is declared abstract, it cannot have definition.
  5. Only abstract classes can have abstract methods. Abstract class does not necessarily require its methods to be all abstract.

  

以上是关于JDK 源码解读之 Number类的主要内容,如果未能解决你的问题,请参考以下文章

JDK源码解读之Integer

JDK 源码解读之 ArrayList

JDK 源码解读之 Set接口

JDK8,AQS源码解读

java.lang.Number解读

一文解读JDK8中HashMap的源码