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


Java Field setInt()用法及代碼示例


java.lang.reflect.Field的setInt()方法用於將字段的值設置為指定對象上的int值。當需要將對象的字段值設置為int時,可以使用此方法在對象上設置值。

用法:

public void setInt(Object obj, int i)
            throws IllegalArgumentException,
                   IllegalAccessException

參數:此方法接受接受兩個參數:


  • obj:是應該修改其字段的對象,並且
  • i:這是要修改的obj字段的新值。

返回:此方法不返回任何內容。

異常:此方法引發以下異常:

  • IllegalAccessException:如果此Field對象正在強製執行Java語言訪問控製,並且基礎字段是不可訪問的或最終的。
  • IllegalArgumentException:如果指定的對象不是聲明基礎字段(或其子類或實現者)的類或接口的實例,或者展開轉換失敗。
  • NullPointerException:如果指定的對象為null,並且該字段是實例字段。
  • ExceptionInInitializerError:如果此方法引發的初始化失敗。

以下示例程序旨在說明setInt()方法:
示例1:

// Java program to illustrate setInt() method 
import java.lang.reflect.Field; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws Exception 
    { 
  
        // create user object 
        Employee emp = new Employee(); 
  
        // print value of salary 
        System.out.println( 
            "Value of salary before "
            + "applying setInt is "
            + emp.salary); 
  
        // Get the  field object 
        Field field = Employee.class.getField("salary"); 
  
        // Apply setInt Method 
        field.setInt(emp, 2243599); 
  
        // print value of salary 
        System.out.println( 
            "Value of salary after "
            + "applying setInt is "
            + emp.salary); 
  
        // print value of uniqueNo 
        System.out.println( 
            "Value of uniqueNo before "
            + "applying setInt is "
            + emp.uniqueNo); 
  
        // Get the field object 
        field = Employee.class.getField("uniqueNo"); 
  
        // Apply setInt Method 
        field.setInt(emp, 123434); 
  
        // print value of uniqueNo 
        System.out.println( 
            "Value of uniqueNo after "
            + "applying setInt is "
            + emp.uniqueNo); 
    } 
} 
  
// sample class 
class Employee { 
  
    // static int values 
    public static int uniqueNo = 234289; 
    public static int salary = 1125213; 
}
輸出:
Value of salary before applying setInt is 1125213
Value of salary after applying setInt is 2243599
Value of uniqueNo before applying setInt is 234289
Value of uniqueNo after applying setInt is 123434

示例2:

// Java program to illustrate setInt() method 
  
import java.lang.reflect.Field; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws Exception 
    { 
  
        // create Numbers object 
        Numbers no = new Numbers(); 
  
        // Get the value field object 
        Field field = Numbers.class
                          .getField("value"); 
  
        // Apply setInt Method 
        field.setInt(no, 53266); 
  
        // print value of isActive 
        System.out.println( 
            "Value after "
            + "applying setInt is "
            + Numbers.value); 
    } 
} 
  
// sample Numbers class 
class Numbers { 
  
    // static int value 
    public static int value = 13685; 
}
輸出:
Value after applying setInt is 53266

參考: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#setInt-java.lang.Object-int-



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Field setInt() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。