命名 AsyncTask 的线程

发布于 2024-12-09 03:48:18 字数 500 浏览 0 评论 0原文

是否可以为 AsyncTask 的后台线程指定一个名称,就像 Java 中的普通线程一样:

Thread(Runnable target, String name) 

我看过 AsyncTask 的代码,默认构造函数只是默认指定一个名称

private static final ThreadFactory sThreadFactory = new ThreadFactory() {
    private final AtomicInteger mCount = new AtomicInteger(1);

    public Thread newThread(Runnable r) {
        return new Thread(r, "AsyncTask #" + mCount.getAndIncrement());
    }
};

我想这样做,因为当我调试时我想要了解哪个 Asynctask 正在访问帮助程序类中的方法。

Is it possible to give a name to an AsyncTask's background thread, as for normal Threads in Java:

Thread(Runnable target, String name) 

I have seen the code of AsyncTask and the default constructor is just give a name by default

private static final ThreadFactory sThreadFactory = new ThreadFactory() {
    private final AtomicInteger mCount = new AtomicInteger(1);

    public Thread newThread(Runnable r) {
        return new Thread(r, "AsyncTask #" + mCount.getAndIncrement());
    }
};

I want to do that, as when I debug I want to know which Asynctask is accessing a method in a helper class.

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

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

发布评论

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

评论(2

北恋 2024-12-16 03:48:18

尝试从 doInBackground() 内部调用它:

Thread.currentThread().setName("some custom name");

Try calling this from inside doInBackground():

Thread.currentThread().setName("some custom name");
女皇必胜 2024-12-16 03:48:18

为什么你不能扩展 AsyncTask 我不明白。

我用调试器将我的 AsyncTask 扩展了数千次,向我展示了哪个 AsyncTask 正在抱怨。

public class MyAsyncTask extends AsyncTask<Void, Void, Void>{
}

像这样

Why can't you extend the AsyncTask I dont understand.

I extend my AsyncTask thousand times with debugger shows me which AsyncTask is bitching.

public class MyAsyncTask extends AsyncTask<Void, Void, Void>{
}

like so

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