Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Will a new thread simply stop after it has finished it's execution?

Will a thread simply terminate after it has completed its execution?

This is how I initialize my thread:

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

        }
    }).start();

Basically what I am trying to do simply execute a single task on a new thread and then terminate the thread. However, after some time I will start another one and so forth. I don't want to have a bunch of threads started and I am wondering if the thread will terminate itself after complete ting it's execution?

Thanks.

like image 644
Georgi Angelov Avatar asked Mar 09 '14 01:03

Georgi Angelov


2 Answers

Yes. When run returns, the thread will stop.

To execute a single task in a thread on Android, you might want to consider using AsyncTask instead. AsyncTask is designed exactly for this purpose. It gives you a simple way to pass data to the other thread, and pass progress updates and a final result back to the main thread. Each AsyncTask is like a Thread, but with those extra features.

like image 133
user253751 Avatar answered Oct 19 '22 04:10

user253751


Will a thread simply terminate after it has completed its execution?

Yes, It will terminate and exit itself after completing the run() method

like image 3
Abimaran Kugathasan Avatar answered Oct 19 '22 03:10

Abimaran Kugathasan