當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Integer.toOctalString()用法及代碼示例



描述

這個java.lang.Integer.toOctalString() 方法將整數參數的字符串表示形式返回為基數為 8 的無符號整數。 以下字符用作八進製數字:01234567

聲明

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

public static String toOctalString(int i)

參數

i─ 這是一個要轉換為字符串的整數。

返回值

此方法返回由八進製(基數為 8)的參數表示的無符號整數值的字符串表示形式。

異常

NA

示例

下麵的例子展示了 java.lang.Integer.toOctalString() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

      int i = 170;
      System.out.println("Number = " + i);

      /* returns the string representation of the unsigned integer value
         represented by the argument in octal (base 8) */
      System.out.println("Octal = " + Integer.toOctalString(i));
   }  
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Number = 170
Octal = 252

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Integer.toOctalString() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。