accessflag.java
来自「本人根据自己的实际情况」· Java 代码 · 共 38 行
JAVA
38 行
/**
*
*/
package gen.constvalue;
/**
* @author liuyi
*
*/
public interface AccessFlag {
public static short ACC_PUBLIC = 0x0001;
public static short ACC_PRIVATE = 0x0002;
public static short ACC_PROTECTED = 0x0004;
public static short ACC_STATIC = 0x0008;
public static short ACC_FINAL = 0x0010;
public static short ACC_SYNCHRONIZED = 0x0020;
public static short ACC_SUPER = 0x0020;
public static short ACC_VOLATILE = 0x0040;
public static short ACC_TRANSIENT = 0x0080;
public static short ACC_NATIVE = 0x0100;
public static short ACC_INTERFACE = 0x0200;
public static short ACC_ABSTRACT = 0x0400;
public static short ACC_STRICT = 0x0800;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?