gpt4 book ai didi

java - 从基类继承 Grails 域类属性

转载 作者:行者123 更新时间:2023-12-02 13:58:52 24 4
gpt4 key购买 nike

我试图创建一个动态继承另一个类属性的域类构造函数。但我无法让它正常工作。

这是一个例子:

class Example1 {

String name;
String location;
}

class Example2 extends Example1 {

String status;

public Example2 (Example1 orig){
// Code here to set this.name and this.location to name and location from orig
// dynamically, so adding a field in Example1 does not require me to add that
// field here.
}
}

最佳答案

你太努力了,只需复制属性:

class Example2 extends Example1 {

String status

Example2() {}

Example2(Example1 orig) {
this.properties = orig.properties
}
}

关于java - 从基类继承 Grails 域类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7206877/

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