java.lang.Integer.valueOf(int i)方法範例


java.lang.Integer.valueOf(int i) 方法返回一個整數範例,表示指定int值i。

宣告

以下是java.lang.Integer.valueOf()方法的宣告

public static Integer valueOf(int i)

引數

  • i -- 這是一個int值。

返回值

該方法返回一個整數範例代表i

異常

  • NA

例子

下面的例子顯示java.lang.Integer.valueOf()方法的使用。

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer i = new Integer(30);
   
     // returns a Integer instance representing the specified int value 
     System.out.println("Value = " + i.valueOf(2));
   }
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value = 2