Java House的构造函数可以定义如下:
public class JavaHouse { private String name; private String location; private int numberOfEmployees; public JavaHouse(String name, String location, int numberOfEmployees) { this.name = name; this.location = location; this.numberOfEmployees = numberOfEmployees; } }
在上面的代码中,JavaHouse类有一个构造函数,用来初始化JavaHouse对象的属性:name, location和numberOfEmployees。构造函数的参数分别是name, location和numberOfEmployees,通过调用构造函数时传入这些参数来初始化JavaHouse对象的属性。