-
Notifications
You must be signed in to change notification settings - Fork 0
JVM Flags
hydrophobis edited this page Mar 24, 2025
·
8 revisions
ACC_PUBLIC: The normal Java public modifier
ACC_PRIVATE: The normal Java private modifier
ACC_PROTECTED: The Java protected modifier
ACC_STATIC: Java static modifier
ACC_FINAL: Java final modifier
ACC_SUPER: Class modifier used if the class has a super. For example:
ACC_PUBLIC | ACC_SUPER // public class with a super class<br> emit_u2("this class name")<br> emit_u2("super class name")
ACC_SYNCHRONIZED: Synchronized function modifier
ACC_NATIVE: Native function definition
ACC_INTERFACE: Interface
ACC_ABSTRACT: Abstract
ACC_STRICT: Enforces strict floating-point calculations that follow the IEEE 754 standard