Integerクラス-一般的な方法と応用例
Integerクラス
本稿では、基本データ型intのパッケージクラスであるIntegerクラスについて説明し、Numberクラスを継承し、Comparableインタフェースを実現します.
構築方法
すなわち、オブジェクトの作成時に数値または文字形式のパラメータが入力されると、valueにint型の値が与えられます.
一般的な方法
メンバー関数
1.compareToメソッド
方法の説明:2つの
戻り値:
2.intValueメソッド
方法の説明:
戻り値:
3.toStringメソッド
方法の説明:
戻り値:オブジェクトの値(基数10)の文字列表示形式.
せいてきかんすう
1.parseIntメソッド
メソッドの説明:文字列パラメータをシンボル整数として、2番目のパラメータで指定します.
戻り値:指定した基数の文字列パラメータで表される整数
2.reversメソッド
メソッド記述:指定したint値のバイナリ符号化表現形式におけるビットの順序を反転して得られた値を返す.
≪戻り値|Return Value|oem_src≫:指定したint値の中位の順序を反転した値を返します.
3.toBinaryStringメソッド
メソッドの説明:整数パラメータの文字列表現形式をバイナリ(基数2)符号なし整数形式で返します.
戻り値:バイナリ(ベース2)パラメータで表される符号なし整数値の文字列表現.
4.toOctalString方法
メソッドの説明:8進数(基数8)符号なし整数の形式で整数パラメータの文字列表現形式を返します.
戻り値:8進数パラメータ(基数8)で表される符号なし整数値の文字列表現.
5.toHexString(int)メソッド
メソッドの説明:16進数(基数16)符号なし整数の形式で整数パラメータの文字列表現形式を返します.
戻り値:パラメータの16進数(基数16)符号なし整数値の文字列表現.
6.toString(int)メソッド
メソッドの説明:2番目のパラメータで指定した基数で表される1番目のパラメータの文字列表現形式を返します.
≪戻り値|Return Value|emdw≫:指定した基数のパラメータの文字列を使用して形式を表します.
7.valueOfメソッド
メソッドの説明:指定した
戻り値:文字列パラメータが示す値を保存する
次はいくつかのIntegerの一般的な方法の例です.
本稿では、基本データ型intのパッケージクラスであるIntegerクラスについて説明し、Numberクラスを継承し、Comparableインタフェースを実現します.
public final class Integer extends Number implements Comparable{}
構築方法
// Integer , int
public Integer(int value) {
this.value = value;
}
// Integer , String int 。
public Integer(String s) throws NumberFormatException {
this.value = parseInt(s, 10);
}
すなわち、オブジェクトの作成時に数値または文字形式のパラメータが入力されると、valueにint型の値が与えられます.
一般的な方法
メンバー関数
1.compareToメソッド
方法の説明:2つの
Integer
オブジェクトを数値的に比較します.戻り値:
Integer
がInteger
パラメータに等しい場合、0
値を返します.Integer
がInteger
パラメータ未満である場合、0
未満の値が返される.Integer
がInteger
よりも数値的に大きい場合、0
よりも大きい値(符号の比較)が返されます.public int compareTo(Integer anotherInteger) {// Integer
return compare(this.value, anotherInteger.value);// compare
}
//---------------------- compare ----------------------
public static int compare(int x, int y) {// int
// x
2.intValueメソッド
方法の説明:
int
のタイプでInteger
の値を返す.戻り値:
int
型に変換されたオブジェクトが表す値. public int intValue() {
return value;// int
}
3.toStringメソッド
方法の説明:
Integer
の値を表すString
のオブジェクトを返します.戻り値:オブジェクトの値(基数10)の文字列表示形式.
public String toString() {
return toString(value);
}
//—------------- toString(int i);------------
public static String toString(int i) {
if (i == Integer.MIN_VALUE)
return "-2147483648";
int size = (i < 0) ? stringSize(-i) + 1 : stringSize(i);
char[] buf = new char[size];
getChars(i, size, buf);
return new String(buf, true);// int
}
せいてきかんすう
1.parseIntメソッド
メソッドの説明:文字列パラメータをシンボル整数として、2番目のパラメータで指定します.
戻り値:指定した基数の文字列パラメータで表される整数
// ( ), ASCII '-' ('\u002D’), '+' ('\u002B')
public static int parseInt(String s, int radix) throws NumberFormatException
{
if (s == null) {
throw new NumberFormatException("null");
}
if (radix < Character.MIN_RADIX) {
throw new NumberFormatException("radix " + radix + " less than Character.MIN_RADIX");
}
if (radix > Character.MAX_RADIX) {
throw new NumberFormatException("radix " + radix + " greater than Character.MAX_RADIX");
}
int result = 0;
boolean negative = false;
int i = 0, len = s.length();
int limit = -Integer.MAX_VALUE;
int multmin;
int digit;
if (len > 0) {
char firstChar = s.charAt(0);
if (firstChar < '0') { // Possible leading "+" or "-"
if (firstChar == '-') {
negative = true;
limit = Integer.MIN_VALUE;
} else if (firstChar != '+')
throw NumberFormatException.forInputString(s);
if (len == 1) // Cannot have lone "+" or "-"
throw NumberFormatException.forInputString(s);
i++;
}
multmin = limit / radix;
while (i < len) {
// Accumulating negatively avoids surprises near MAX_VALUE
digit = Character.digit(s.charAt(i++),radix);
if (digit < 0) {
throw NumberFormatException.forInputString(s);
}
if (result < multmin) {
throw NumberFormatException.forInputString(s);
}
result *= radix;
if (result < limit + digit) {
throw NumberFormatException.forInputString(s);
}
result -= digit;
}
} else {
throw NumberFormatException.forInputString(s);
}
return negative ? result : -result;
}
// static int parseInt(String s, int radix)
public static int parseInt(String s) throws NumberFormatException {
return parseInt(s,10);
}
2.reversメソッド
メソッド記述:指定したint値のバイナリ符号化表現形式におけるビットの順序を反転して得られた値を返す.
≪戻り値|Return Value|oem_src≫:指定したint値の中位の順序を反転した値を返します.
public static int reverse(int i) {
// HD, Figure 7-1
i = (i & 0x55555555) << 1 | (i >>> 1) & 0x55555555;
i = (i & 0x33333333) << 2 | (i >>> 2) & 0x33333333;
i = (i & 0x0f0f0f0f) << 4 | (i >>> 4) & 0x0f0f0f0f;
i = (i << 24) | ((i & 0xff00) << 8) |
((i >>> 8) & 0xff00) | (i >>> 24);
return i;
}
3.toBinaryStringメソッド
メソッドの説明:整数パラメータの文字列表現形式をバイナリ(基数2)符号なし整数形式で返します.
戻り値:バイナリ(ベース2)パラメータで表される符号なし整数値の文字列表現.
public static String toBinaryString(int i) {
return toUnsignedString0(i, 1);
}
//+++++++++++++++++++++++++++++++++++++++++++++++
private static String toUnsignedString0(int val, int shift) {
// assert shift > 0 && shift <=5 : "Illegal shift value";
int mag = Integer.SIZE - Integer.numberOfLeadingZeros(val);
int chars = Math.max(((mag + (shift - 1)) / shift), 1);
char[] buf = new char[chars];
formatUnsignedInt(val, shift, buf, 0, chars);
// Use special constructor which takes over "buf".
return new String(buf, true);
}
4.toOctalString方法
メソッドの説明:8進数(基数8)符号なし整数の形式で整数パラメータの文字列表現形式を返します.
戻り値:8進数パラメータ(基数8)で表される符号なし整数値の文字列表現.
public static String toOctalString(int i) {
return toUnsignedString0(i, 3);
}
//+++++++++++++++++++++++++++++++++++++++++++++++
private static String toUnsignedString0(int val, int shift) {
// assert shift > 0 && shift <=5 : "Illegal shift value";
int mag = Integer.SIZE - Integer.numberOfLeadingZeros(val);
int chars = Math.max(((mag + (shift - 1)) / shift), 1);
char[] buf = new char[chars];
formatUnsignedInt(val, shift, buf, 0, chars);
// Use special constructor which takes over "buf".
return new String(buf, true);
}
5.toHexString(int)メソッド
メソッドの説明:16進数(基数16)符号なし整数の形式で整数パラメータの文字列表現形式を返します.
戻り値:パラメータの16進数(基数16)符号なし整数値の文字列表現.
public static String toHexString(int i) {
return toUnsignedString0(i, 4);
}
//+++++++++++++++++++++++++++++++++++++++++++++++
private static String toUnsignedString0(int val, int shift) {
// assert shift > 0 && shift <=5 : "Illegal shift value";
int mag = Integer.SIZE - Integer.numberOfLeadingZeros(val);
int chars = Math.max(((mag + (shift - 1)) / shift), 1);
char[] buf = new char[chars];
formatUnsignedInt(val, shift, buf, 0, chars);
// Use special constructor which takes over "buf".
return new String(buf, true);
}
6.toString(int)メソッド
メソッドの説明:2番目のパラメータで指定した基数で表される1番目のパラメータの文字列表現形式を返します.
≪戻り値|Return Value|emdw≫:指定した基数のパラメータの文字列を使用して形式を表します.
public static String toString(int i) {
if (i == Integer.MIN_VALUE)
return "-2147483648";
int size = (i < 0) ? stringSize(-i) + 1 : stringSize(i);
char[] buf = new char[size];
getChars(i, size, buf);
return new String(buf, true);
}
7.valueOfメソッド
メソッドの説明:指定した
String
の値を保存したInteger
オブジェクトを返します.戻り値:文字列パラメータが示す値を保存する
Integer
オブジェクト.public static Integer valueOf(String s) throws NumberFormatException {
return Integer.valueOf(parseInt(s, 10));
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
次はいくつかのIntegerの一般的な方法の例です.
public class NumberDemo01 {
public static void main(String[] args) {
Integer i1=new Integer(10); //10
Integer i2=new Integer("10"); //10
//
System.out.println(i1.compareTo(i2));//0
System.out.println(i1 10+""
//
System.out.println(Integer.parseInt("123")+1); //
System.out.println(Integer.parseInt("10010101",2)); //
//java.lang.NumberFormatException
//System.out.println(Integer.parseInt("10010102",2)); //
System.out.println(Integer.parseInt("102201012",3));//
// ?radix ∈ [2,36] 10 +26
System.out.println(Integer.parseInt("123123",36));
System.out.println(Integer.reverse(123));// 123-321
System.out.println(Integer.toBinaryString(149));
System.out.println(Integer.toOctalString(149));
System.out.println(Integer.toHexString(149));
System.out.println(Integer.toString(149)); // Object
//
System.out.println(Integer.valueOf(10)); // , new Integer(10)
}
}