Short クラス
- [内容]
- short 型のデータをオブジェクトとして包み込むクラスです.
- [主な変数]
- public static final short MAX_VALUE
- Short 型データの最大値
- public static final short MIN_VALUE
- Short 型データの最小値
- [コンストラクタ]
- public Short(short value)
- public Short(String s)
- Short 型に変換される( valueOf )
- [主なメソッド]
- public double doubleValue()
- public int intValue()
- double や int に変換する
- public static short parseShort(String s) throws NumberFormatException
- public static short parseShort(String s, int radix) throws NumberFormatException
- 文字列を short 型データに変換して返す.radix を省略すると 10 とみなされる.
- public String toString()
- 文字列に変換する
- public static Short valueOf(String s) throws NumberFormatException
- public static Short valueOf(String s, int radix) throws NumberFormatExceptio
- Short に変換する.radix を省略すると 10 とみなされる.
- [使用例]
- プログラム例は,Short クラスの各メソッド等の使用例です.
- [参照]
- Character, String, StringBuffer, Byte, Double, Integer, Boolean