码迷,mamicode.com
首页 > 其他好文 > 详细

JDK 源码解读之 Number类

时间:2017-07-26 18:03:20      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:for   ant   class   ati   code   key   sse   strong   imp   


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类

标签:for   ant   class   ati   code   key   sse   strong   imp   

原文地址:http://www.cnblogs.com/goodearth/p/7240001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!