第四届智慧城市工程与公共交通国际学术会议(SCEPT 2024)
2024 4th International Conference on Smart City Engineering and Public Transportation
第四届智慧城市工程与公共交通国际学术会议(SCEPT 2024)将于2024年1月26-28日…
任何可以产生对象的方法或类,都可以称为工厂。
下面的代码定义了Car这种交通工具:
public class Car {public void go() {System.out.println("Car go wuwuwuwuw....");}
}然后在main函数里面想要调用调用Car的go方法,就需要new一个car对象&…