我需要将在 中创建的变量的名称传递Class A
给Class B
,因此我可以在该变量中放入一个值(在Class B
)。但是,在 BI 类中不知道该变量的名称。代码是这样的:
A级
public class A {
int valore; // this is the variable, in Class b, I don't know this name!
public void callClassB(){
ClassB.Method(what shoudld i put here?)
}
}
这是B类
public class B {
public void Method(the_Name_Of_TheVariable_I_get){
the_Name_Of_TheVariable_I_get = 5; // i need to do this
}
}