English 中文(简体)
SWING 工人线条 : 内部类与通过参数
原标题:Swing Worker Thread : Inner class vs passing parameter

我知道SO是用来回答具体问题的,但我需要建议一下 在爪哇,什么是正确的做法 工作周期工人线。

我的应用程序根据在 jTextPane 中显示的计算过程生成了大型 HTML 文本。 为了避免屏蔽用于在 Swing Worker Tread 中进行计算的 GUI I 。

我的问题是, 开始计算需要大量信息, 包括不同的菜单复选框和 GUI 列表框, 在计算结束时, 我需要在 EDT 中启动函数 。

我有两个可能性:

第一个是将大量信息发送给我的斯温工人, 还需要通过主Frame 进入“完成”中的具体功能 。

public class MyWorker extends SwingWorker<Void, Void> {      

    private MyMainFrame frame;
    public MyWorker(plenty of params) {
    }

    @Override
    public Void doInBackground() {
        //my background process
    }

    @Override
    public void done() {
    frame.myfunc1;
    frame.myfunc2;
    frame.myfunc3;
    }
}

第二是使用内部类

这在爪哇是正确的。如果两者都“正确 ”, 那么一个的利弊对另一个的利弊。

最佳回答

这两种方法都是可以的。 内层的优点在于它可以进入附着物体的内部。 缺点在于它不能在另一种情况下( 例如另一个框架, 它会有一个类似的界面 ) 重复使用 。

只需确保您的代码结构合理且可读即可。 例如, 您可能需要在框架的单一方法中提取 < code> done () 方法中的三种方法调用 。

问题回答

如果在构建器中您要通过的大量参数困扰您,您可以将这些参数分组在容器对象中,然后直接通过容器(例如,MyWorkerContext 类)。

我个人会尽量避免通过UI(元素)本身,而是通过一个模型/流/...,该模型/流/...将由 SwingWorker 更新,允许我稍后再将UI重新构思,而不必与我的 SwingWorker 类混为一谈。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签