标签: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
abstract
can be used on classe declaration. For example abstract MyClassX (…);
.abstract
can be used on method declaration. For example abstract int f (…);
.abstract
, it cannot be instantiated.abstract
, it cannot have definition.
标签:for ant class ati code key sse strong imp
原文地址:http://www.cnblogs.com/goodearth/p/7240001.html