可以通过以下方式将类的实例添加到构造函数参数属性:
public class MyClass {
private AnotherClass anotherClass;
public MyClass(AnotherClass anotherClass) {
this.anotherClass = anotherClass;
}
// other code here
}
在这个例子中,构造函数需要一个AnotherClass对象作为参数,并将其赋值给MyClass类的一个私有成员变量。这样,在实例化MyClass时,可以将AnotherClass的实例传递给构造函数。
AnotherClass anotherClassInstance = new AnotherClass();
MyClass myClassInstance = new MyClass(anotherClassInstance);
这里将AnotherClass的实例传递给了MyClass的构造函数,然后将返回的MyClass对象赋值给myClassInstance变量。