gpt4 book ai didi

java - 在我的主类中调用重写的方法

转载 作者:行者123 更新时间:2023-12-01 17:35:14 28 4
gpt4 key购买 nike

我的代码是这样的...但是当我调用重写的方法createHome()时似乎出现了问题。这是示例代码:

public class Test extends SweetHome3D {
public static void main(String [] args) {
new Test().init(args);
***createHome();***
}

@Override
public Home createHome() {
Home home = super.createHome();
// Modify home as you wish here
return home;
}
}

最佳答案

我认为代码没有编译?您正在调用 createHome(),就好像它是静态方法一样。

public static void main(String [] args) {
Test test = new Test();
test.init(args);
test.createHome();
}

关于java - 在我的主类中调用重写的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7138584/

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