访问在另一个类中创建的对象

发布于 2024-10-07 01:17:27 字数 771 浏览 1 评论 0原文

我在我的主类中创建一个线程。 该线程有一个在套接字上写入和读取的计时器。

我需要从声明它的地方(Main)之外的另一个类调用线程类中的方法,例如 writeSomething() 。

如何从另一个类引用该对象?

编辑

public static Thread connectionThread;

ModelJTable table = new ModelJTable();
connectionThread = new Thread(new ConnectionThread(table), "connectionThread");
connectionThread.start();

在线程类中有一个方法

public void openFile(String fileName){
    String request = "open;" + fileName;
    out.print(request);
}

我想

String open = "open;" + getname + ";" + getpath;
// This doesnt work 
ConnectionThread.openFile(open);

,如果从另一个类(JTable 类)访问此调用会出现错误

无法访问 ConnectionThread 类型的封闭实例 范围

I create a thread in my main class.
The thread has a timer which writes and reads on a socket.

I need to call a method in the thread class e.g writeSomething() from another class outside of where it was declared(Main).

How is the object referenced from another class?

Edit

public static Thread connectionThread;

ModelJTable table = new ModelJTable();
connectionThread = new Thread(new ConnectionThread(table), "connectionThread");
connectionThread.start();

I have a method in the thread class

public void openFile(String fileName){
    String request = "open;" + fileName;
    out.print(request);
}

I want to access if from another class(the JTable class)

String open = "open;" + getname + ";" + getpath;
// This doesnt work 
ConnectionThread.openFile(open);

This call gives an error

No enclosing instance of the type ConnectionThread is accessible in
scope

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泡沫很甜 2024-10-14 01:17:27

要么将其传递到第二类的构造函数中,要么在第一类中将其设为静态,或者以

1: static one 的方式序列化它

Class A{
public static int a=0;
}

Class B{
public void someMethod(){
A.a = 10;
}
}

Either pass it in constructor of second class OR make it static in first class, OR serialize it

way 1: static one

Class A{
public static int a=0;
}

Class B{
public void someMethod(){
A.a = 10;
}
}
方觉久 2024-10-14 01:17:27

将 Thread 的引用传递给需要调用该方法的类。

Pass a reference to the Thread to the class that needs to call the method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文