android task thread 区别,multithreading

Thread

A thread is a concurrent unit of execution. It has its own call stack.

There are two methods to implement threads in applications.

One is providing a new class that extends Thread and overriding its

run() method. The other is providing a new Thread instance with a

Runnable object during its creation. A thread can be executed by

calling its "start" method. You can set the "Priority" of a thread by

calling its "setPriority(int)" method.

A thread can be used if you have no affect in the UI part. For

example, you are calling some web service or download some data, and

after download, you are displaying it to your screen. Then you need to

use a Handler with a Thread and this will make your application

complicated to handle all the responses from Threads.

A Handler allows you to send and process Message and Runnable objects

associated with a thread's MessageQueue. Each thread has each message

queue. (Like a To do List), and the thread will take each message and

process it until the message queue is empty. So, when the Handler

communicates, it just gives a message to the caller thread and it will

wait to process.

If you use Java threads then you need to handle the following

requirements in your own code:

Synchronization with the main thread if you post back results to the

user interface No default for canceling the thread No default thread

pooling No default for handling configuration changes in Android

AsyncTask

AsyncTask enables proper and easy use of the UI thread. This class

allows performing background operations and publishing results on the

UI thread without having to manipulate threads and/or handlers. An

asynchronous task is defined by a computation that runs on a

background thread and whose result is published on the UI thread.

AsyncTask will go through the following 4 stages:

onPreExecute()

Invoked on the UI thread before the task is executed

doInbackground(Params..)

Invoked on the background thread immediately after onPreExecute()

finishes executing.

onProgressUpdate(Progress..)

Invoked on the UI thread after a call to publishProgress(Progress...).

onPostExecute(Result)

Invoked on the UI thread after the background computation finishes.

Why should you use AsyncTask?

Easy to use for a UI Thread. (So, use it when the caller thread is a

UI thread).

No need to manipulate Handlers.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值