-
Notifications
You must be signed in to change notification settings - Fork 0
Bytecode constant types
hydrophobis edited this page Mar 25, 2025
·
1 revision
This section defines constants that represent various data types used in the Java class file format. These constants are used to identify primitive types within the bytecode and other sections of the class file.
-
T_BOOLEAN→4
Represents thebooleandata type. -
T_CHAR→5
Represents thechardata type. -
T_FLOAT→6
Represents thefloatdata type. -
T_DOUBLE→7
Represents thedoubledata type. -
T_BYTE→8
Represents thebytedata type. -
T_SHORT→9
Represents theshortdata type. -
T_INT→10
Represents theintdata type. -
T_LONG→11
Represents thelongdata type.
uint16_t type = T_INT; // Assigning the integer typeThis assigns the T_INT constant, which represents the integer data type.