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