This commit is contained in:
Jiangli Zhou 2019-05-20 10:32:10 -07:00
commit fec76f2b95

View File

@ -53,6 +53,11 @@ package java.lang;
* @since 1.0
*/
public abstract class Number implements java.io.Serializable {
/**
* Constructor for subclasses to call.
*/
public Number() {super();}
/**
* Returns the value of the specified number as an {@code int}.
*