gpt4 book ai didi

java - 练习吧! 1.2.3 : Strange

转载 作者:行者123 更新时间:2023-11-29 09:35:34 24 4
gpt4 key购买 nike

我是学习 Java 的新手,我正在练习 Practice-It!帮助我理解语言的问题。

我卡在问题 1.2.3 上,标题为 Strange,在这个问题中,他们希望您根据他们提供的代码输入输出。

我的问题是,与输入相比,我不理解输出。

 public class Strange {

public static void main(String[] args) {
first();
third();
second();
third();
}

public static void first() {
System.out.println("Inside first method.");
}

public static void second() {
System.out.println("Inside second method.");
first();
}

public static void third() {
System.out.println("Inside third method.");
first();
second();
}
}

我以为输出会是:

Inside first method.
Inside third method.
Inside first method.
Inside second method.
Inside second method.
Inside first method.
Inside third method.
Inside first method.
Inside second method.

但它是:

Inside first method.
Inside third method.
Inside first method.
Inside second method.
Inside first method.
Inside second method.
Inside first method.
Inside third method.
Inside first method.
Inside second method.
Inside first method.

这是为什么?

非常感谢。

最佳答案

你可以通过应用一些缩进来理解它:

first
third
first
second
first
second
first
third
first
second
first

(内节点代表外节点调用的方法)

关于java - 练习吧! 1.2.3 : Strange,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19091337/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com