我正在为 JVM 中的所有操作码编写一个枚举。它不完整,到目前为止看起来像这样:
public enum Opcode {
NOP(),
ACONST_NULL(),
ICONST_M1(),
ICONST_0(),
ICONST_1(),
// a zillion more of these
JSR_W();
private Opcode(Class<? extends Argument> args...) {
}
}
构造声明的行有编译错误:
')' 预期的
到底是怎么回事?