gpt4 book ai didi

java - 无法命名后台线程,Void 错误

转载 作者:行者123 更新时间:2023-12-02 04:33:10 24 4
gpt4 key购买 nike

我正在尝试命名我的线程,我有这段代码

 public void DownloadFromUrl(final String fileName) {  //this is the downloader method
new Thread(new Runnable() {
public void run() {

Looper.prepare();
...

但是当我尝试这样命名时

 public void DownloadFromUrl(final String fileName) {  //this is the downloader method
Thread t1 = new Thread(new Runnable() {
public void run() {

Looper.prepare();
...

它只是说

Required: Java.lang.Thread 
Found: Void

最佳答案

也许您在线程上调用了 start 方法。这将返回void。试试这个。

 Thread t1 = new Thread(new Runnable() {
public void run() {

Looper.prepare();
...
}
t1.start();

但我同意另一个答案,你可能应该使用线程以外的其他东西。

关于java - 无法命名后台线程,Void 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31187515/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com