У меня два класса, как показано ниже. В классе BBB я хочу передать имя переменной (в переменной strVarName), к которой я хочу получить доступ из класса AAA. Возможно ли это сделать?
public class AAA{
String strName = "SomeName";
String strAddress = "SomeAddress";
String strPhone = "1231234567";
public static void main(String[] args) {
int intTest;
intTest = 10/2;
System.out.println (intTest)
}
}
public class BBB{
public static void main(String[] args) {
String strVarName;
strVarName = "strName";
AAA objAAA = new AAA();
System.out.println(objAAA.strVarName);//How to achive this line of code
}
}