tooctalstring
整数类toOctalString()方法 (Integer class toOctalString() method)
toOctalString() method is available in java.lang package.
toOctalString()方法在java.lang包中可用。
toOctalString() method is used to represent an octal string of the given parameter [value] of integer type as an unsigned integer in base 8.
toOctalString()方法用于将整数类型的给定参数[value]的八进制字符串表示为以8为底的无符号整数。
toOctalString() method is a static method, it is accessible with class name too and if we try to access the method with the class object then also we will not get an error.
toOctalString()方法是一个静态方法,也可以使用类名进行访问,如果我们尝试使用类对象访问该方法,那么也不会出错。
toOctalString() method does not throw an exception at the time of conversion from integer to an octal string.
从整数转换为八进制字符串时, toOctalString()方法不会引发异常。
Syntax:
句法:
public static String toOctalString (int value);
Parameter(s):
参数:
int value – represents the integer value to be converted.
int value –表示要转换的整数值。
Return value:
返回值:
The return type of this method is int, it returns the octal string of the given parameter that represent the unsigned integer value.
此方法的返回类型为int ,它返回给定参数的八进制字符串,该字符串表示无符号整数值。
Example:
例:
// Java program to demonstrate the example
// of toOctalString (int value) method of Integer class
public class ToOctalStringOfIntegerClass {
public static void main(String[] args) {
// Variables initialization
int i1 = 10;
int i2 = 20;
int i3 = 30;
int i4 = Integer.MAX_VALUE;
int i5 = Integer.MIN_VALUE;
// Integer instance creation
Integer value = new Integer(i1);
// It represents Octal string of the given
// integer type i2 argument
String s = value.toOctalString(i2);
// Display Octal String Representation
System.out.println("value.toOctalString(i2): " + s);
// It represents Octal string of the given
// integer type i3 argument
s = value.toOctalString(i3);
// Display Octal String Representation
System.out.println("value.toOctalString(i3): " + s);
// It represents Octal string of the given
// integer type i4 argument
s = value.toOctalString(i4);
// Display Octal String Representation
System.out.println("value.toOctalString(i4): " + s);
// It represents Octal string of the given
// integer type i5 argument
s = value.toOctalString(i5);
// Display Octal String Representation
System.out.println("value.toOctalString(i5): " + s);
}
}
Output
输出量
value.toOctalString(i2): 24
value.toOctalString(i3): 36
value.toOctalString(i4): 17777777777
value.toOctalString(i5): 20000000000
翻译自: https://www.includehelp.com/java/integer-class-tooctalstring-method-with-example.aspx
tooctalstring