我有两个班,A班和B班。
public class A {
B testB = new B();
testB.setName("test"); //**Error Syntax error on token(s), misplaced constructs
//**(same line above) Error Syntax error on "test"
}
//in a separate file
public class B {
public String name;
public void setName(String name){
this.name = name;
}
}
为什么我不能在 A 类的 B 类中访问这个函数“setName”?谢谢。