例如,定制部件需要知道什么字符串作为名称。
<强 > 压倒 强 >
CustomComponent c = new CustomComponent(){
@Override
public String getTitle(){
return "A given title";
}
};
<强 > 字段 强 >
CustomComponent c = new CustomComponent()
c.setTitle("A given title");
Using the first 方法,我不需要在自定义元件中创建字符串字段,但代码要干净得多。是否有强烈偏好/建议的方法,如果有,为什么?
注意,这只是一个简单的例子。
谢谢 谢谢