我遇到了一个问题,我收到了错误代码:
Error: The code of method main(java.lang.String[]) is exceeding the 65535 bytes limit
编程java时。
我对java非常陌生,而且我现在还不知道该怎么做。
我已经看过其他可能的解决方案,但我真的不明白他们想说的是什么。我没有使用数组,我的代码完全由dos和if语句组成。我对这一切都是新的。
答案 0 :(得分:0)
如果您的代码如下所示:
public class MyClass {
public static void main(String[] args) {
// Do way too much stuff . . .
}
}
让它更像这样
public class MyClass {
public static void main(String[] args) {
doSomeStuff();
doMoreStuff();
}
public static void doSomeStuff() {
// Do some stuff but not too much
}
public static void doMoreStuff() {
// Do some more stuff but not too much
}
}