我有一个实现接口B的具体类A.
@H_403_13@解决方法
B ref = new A();
代码:
public interface B{ public abstract String[] getWords(); } public class A implements B { private String[] words = new String[] {}; public void setWords(String[] words){ this.words = words; } public String[] getWords(){ return this.words; } }
在接口B中,我只有getter方法但没有setter方法,尽管A类有它.
所以当我这样做时:B ref = new A();,这段代码会起作用,我将如何设置单词?