作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
虽然这可行:
new Thread(new Classimplementingrunnable(stuff, dostuff()).start();
这不会:
new Thread(){
public void run(){
Log.i("tag", "I am inside thread");
dostuff();
}
};
没有错误发生,它只会忽略它并且不会启动单独的线程,因此“我在线程内”不会显示。
最佳答案
您需要在线程上调用 start()
方法才能使其运行。
new Thread(){
@Override
public void run(){
Log.i("tag", "I am inside thread");
dostuff();
}
}.start();
关于java - 为什么调用新线程在AsyncTask的doInbackground()中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8811032/
嘿。本周的一个教程,其中一个问题要求通过使用其他函数 formatLine 和 formatList 创建一个函数 formatLines,以格式化行列表。 我的代码是这样的; type Line =
我是一名优秀的程序员,十分优秀!