如何从另一个类访问静态变量?

时间:2015-04-12 02:23:07

标签: java class variables static

我正在尝试从Server类访问Client类中的变量“name”。这是我试图做的,但是当我打印它时,它说它是空的(?)。我怎样才能解决这个问题?提前谢谢......

客户端类

class Client {
    static Socket socket;
    static String name;

    public static void main(String[] args) throws Exception {

        String hostname = "";
        int port = 0;

        if (args.length == 3) {
            hostname = args[0];
            port = Integer.parseInt(args[1]);
            name = args[2];
            System.out.println("(" + hostname + ":" + port + ")");
        } else {
            hostname = "localhost";
            port = 3000;
            name = "default";
            System.out.println("Using all default arguments. (" + hostname + ":" + port + ")");
        }

        Client c = new Client(hostname, port);
        c.connect();
    }
}

服务器类

class Server {
    ServerSocket main;
    Helper helper;

    static class MailServer extends Thread {
        DataInputStream dataIn;
        DataOutputStream dataOut;
        int index;
        Helper helper;
        String name = Client.name; //<--- HERE
    }
}

1 个答案:

答案 0 :(得分:1)

如果客户端和服务器类在同一个JVM中运行,那么您的代码应该可以正常工作,假设您未向我们显示的位是正确的。

所以......你(很有可能)在一个JVM中启动Client而在另一个JVM中启动ServerClient.name静态不同。在客户端JVM中分配值时,它不会奇迹般地传播到服务器JVM。