Java - Integer toOctalString() 方法



描述

Java Integer toOctalString() 方法将整数参数作为无符号整数以 8 进制形式返回字符串表示形式。

声明

以下是 java.lang.Integer.toOctalString() 方法的声明

public static String toOctalString(int i)

参数

i − 要转换为字符串的整数。

返回值

此方法返回参数表示的无符号整数值的 8 进制(以 8 为基数)字符串表示形式。

异常

获取正整数的 8 进制表示示例

以下示例演示了如何使用 Integer toOctalString() 方法获取指定 int 值的 8 进制字符串表示形式。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toOctalString() 方法打印结果。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      int i = 170;
      System.out.println("Number = " + i);
    
      /* returns the octal string representation of the given number */
      System.out.println("toOctalString = " + Integer.toOctalString(i));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = 170
toOctalString = 252

获取负整数的 8 进制表示示例

以下示例演示了如何使用 Integer toOctalString() 方法获取指定 int 值的 8 进制字符串表示形式。我们创建了一个 int 变量并为其分配了一个负整数。然后使用 toOctalString() 方法打印结果。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      int i = -170;
      System.out.println("Number = " + i);
    
      /* returns the octal string representation of the given number */
      System.out.println("toOctalString = " + Integer.toOctalString(i));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = -170
toOctalString = 37777777526

获取正零整数的 8 进制表示示例

以下示例演示了如何使用 Integer toOctalString() 方法获取指定 int 值的 8 进制字符串表示形式。我们创建了一个 int 变量并为其分配了一个零值。然后使用 toOctalString() 方法打印结果。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      int i = 0;
      System.out.println("Number = " + i);
    
      /* returns the octal string representation of the given number */
      System.out.println("toOctalString = " + Integer.toOctalString(i));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = 0
toOctalString = 0
java_lang_integer.htm
广告