如何解决“ ..方法的代码超出了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)方法分解为多个子方法。