我想在类的构造函数中访问 name 和 age 的值 Choose 我提到的 public Choose(){ 它们存储在 NewP 的 GetValues 方法中
选择.java
class Choose {
String Cn,Ca;
public Choose(){
btn.addMouseListener{
}
}
public static void gtNp(string nn,string aa) {
Cn=nn;
Ca=aa;
}
}
新P.java
class NewP {
Choose C1 = new Choose();
NewP() {
btn.addMouseListener{
GetValues();
Choose.gtNp(name,age);
}
}
public NewP GetValues(){
Name= ;
Age= ;
return null;
}
}