Smart Card Solution
User Manual
- R502 Manual
JavaCard API Samples
- Algorithm
Java Card Specification
Knowledge Sharing
Smart Card Solution
User Manual
JavaCard API Samples
Java Card Specification
Knowledge Sharing
Fetch field from object
Format
getfield_
index
Forms
getfield_a = 131 (0x83) getfield_b = 132 (0x84) getfield_s = 133 (0x85) getfield_i = 134 (0x86)
Stack
…, objectref → …, value
OR
…, objectref → …, value.word1, value.word2
Description
The objectref, which must be of type reference, is popped from the operand stack. The unsigned index is used as an index into the constant pool of the current package ( Section 3.5, Frames). The constant pool item at the index must be of type CONSTANT_InstanceFieldref ( Section 6.7.2, CONSTANT_InstanceFieldref, CONSTANT_VirtualMethodref, and CONSTANT_SuperMethodref), a reference to a class and a field token.
The class of objectref must not be an array. If the field is protected, and it is a member of a superclass of the current class, and the field is not declared in the same package as the current class, then the class of objectref must be either the current class or a subclass of the current class.
The item must resolve to a field with a type that matches t, as follows:
The width of a field in a class instance is determined by the field type specified in the instruction. The item is resolved, determining the field offset<SUP>[5]</SUP>. The value at that offset into the class instance referenced by objectref is fetched. If the value is of type byte or type boolean, it is sign-extended to a short. The value is pushed onto the operand stack.
Runtime Exception
If objectref is null, the getfield_ instruction throws a NullPointerException.
Notes
In some circumstances, the getfield_ instruction may throw a SecurityException if the current context ( Section 3.4, Contexts) is not the owning context ( Section 3.4, Contexts) of the object referenced by objectref. The exact circumstances when the exception will be thrown are specified in Chapter 6 of the Runtime Environment Specification, Java Card Platform, Version 2.2.2.
If a virtual machine does not support the int data type, the getfield_i instruction will not be available.