Aracılığıyla paylaş


Field.SetInt(Object, Int32) Method

Definition

Sets the value of a field as an int on the specified object.

[Android.Runtime.Register("setInt", "(Ljava/lang/Object;I)V", "")]
public void SetInt (Java.Lang.Object? obj, int i);
[<Android.Runtime.Register("setInt", "(Ljava/lang/Object;I)V", "")>]
member this.SetInt : Java.Lang.Object * int -> unit

Parameters

obj
Object

the object whose field should be modified

i
Int32

the new value for the field of obj being modified

Attributes

Exceptions

if the object is null and the field is non-static

if the object is not compatible with the declaring class

if this field is not accessible

Remarks

Sets the value of a field as an int on the specified object. This method is equivalent to set(obj, iObj), where iObj is a Integer object and iObj.intValue() == i.

Java documentation for java.lang.reflect.Field.setInt(java.lang.Object, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to