您可以在MAIM中定义方法' public static void main(string [] args)' Java中的方法?

发布于 2025-01-24 10:42:05 字数 540 浏览 0 评论 0原文

我是Java的新手,并且一直在Eclipse IDE中练习编程。我有以下代码:

public static void main(String[] args) {
    
    public double absoluteValue(double n) {
        if (n < 0) {
            return -n;
        } else {
            return n;
        }
    }
    
    System.out.println(absoluteValue(-5));
}

我尝试创建一个返回绝对值的方法absoluteValue()。但是,Eclipse向我扔了很多错误。

当我定义 absoluteValue() 之外,我设法使我的代码工作正常静态双绝对值(double n))和在主方法中称其为

但是我只是想知道为什么上述代码不起作用。您可以在主要方法中定义方法(如果是这样,应该)?

I'm new to Java and have been practising programming within the Eclipse IDE. I have the following code:

public static void main(String[] args) {
    
    public double absoluteValue(double n) {
        if (n < 0) {
            return -n;
        } else {
            return n;
        }
    }
    
    System.out.println(absoluteValue(-5));
}

I tried to create a method absoluteValue() which returns absolute values. However, Eclipse threw a bunch of errors at me.

I managed to get my code to work when I defined absoluteValue() outside of the main method (had to define it as public static double absoluteValue(double n) though) and called it within the main method.

But I was just wondering why the above code doesn't work. Can you define methods within the main method (if so, should you)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

非要怀念 2025-01-31 10:42:05

Java不允许嵌套这种方法。您可以在方法内有lambdas,但不能在方法内定义完整的方法。这是毕达斯塔斯人知道的重要区别。

Java does not allow nesting of methods of this sort. You can have lambdas inside of a method but you can't define a full method inside of a method. This is an important difference for Pythonistas to know.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文