作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这可能是一个简单的解决方案,但我才刚刚开始使用 java。我需要在主方法中声明一个清除屏幕的方法。第 5 行给我一个名为“非法表达式开始”的错误。
public class Project2
{
public static void main(String [] args)
{
public static void clearScreen()
{
System.out.print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
}// end clearScreen()
System.out.print("\nDid it work?");
}
}
最佳答案
Java 中不允许嵌套方法(到目前为止)。您能得到的最接近的是
class Project2 {
public static void main(String [] args) {
class InnerClass {
void clearScreen() {
// Do something.
}
}
new InnerClass().clearScreen(); // Call it this way.
}
}
如果上述解决方案不适合,只需将该方法移到 main
之外并调用它即可。
关于java - 表达式开始非法 : declaring a method inside another method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19189214/
我是一名优秀的程序员,十分优秀!