该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
全文,,,
写了三个类,调用那个对象为null值
三个类都不在一个包
---------------------------------------------------被调用的方法
public class CunKuan {
......
jb1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
String yue = jtf.getText();
int in = Integer.parseInt(yue);
User user = new User();
Text text = new Text();
text.link();
User_name un = new User_name(); ----new User_na
String zh_name = un.getU_name(); 从这类里提取变量的值用getU_name();方法
// 有什么方法可以调用到下面Client类中的String username 变量
//
System.out.println(un.getU_name()); ---打出来居是null值,我前面有给值的
text.deal(user, in, zh_name);
} catch (Exception e1) { }
} });
------------------------------