如何解决“ ..方法的代码超出了65535字节的限制”?

我有以下代码:

public static void main(String[] args) {

try {

String[] studentnames = {

/* this is an array of 9000 strings... */

};

}

}

尝试编译此错误消息:

The code of method main(String[]) is exceeding the 65535 bytes limit

回答:

在Java中,方法不能超过65535个字节。

因此,要解决此问题,请将您的main(String[] args)方法分解为多个子方法。

以上是 如何解决“ ..方法的代码超出了65535字节的限制”? 的全部内容, 来源链接: utcz.com/qa/425247.html

回到顶部