Android学习笔记之多线程

通过继承自Thread实现线程

通过继承Thread类自定义一个线程类,并重写run()方法:

//通过继承Thread类实现一个线程
public class MyThread extends Thread {
@Override
public void run() {
    Log.d("TAG",Thread.currentThread().getName()+"通过继承实现线程");//打印出当前线程的名称
 }
}

实例化一个自定义的线程对象,进行测试:

public  void btnClick(View view){
    testThread();

}
public  void  testThread() {
    MyThread mt1 = new MyThread();
    MyThread mt2 = new MyThread();
    //启动线程
    mt1.start();
    mt2.start();
}

终端输出:

03-28 13:21:18.290 7164-7311/com.example.felix.thread_andorid D/TAG: Thread-156通过继承实现接口
03-28 13:21:18.298 7164-7310/com.example.felix.thread_andorid D/TAG: Thread-155通过继承实现接口

通过实现一个接口实现一个线程

public class MyRunable implements Runnable {

@Override
public void run() {
    Log.d("TAG",Thread.currentThread().getName()+"通过接口实现线程");//打印出当前线程的名称
 }
}

实例化一个自定义的线程对象,以便进行测试。

public  void testRunnable() {
    MyRunable mr1 = new MyRunable();
    MyRunable mr2 = new MyRunable();
    //
    Thread th1 = new Thread(mr1);
    Thread th2 = new Thread(mr2);
    th1.start();
    th2.start();
}

终端输出:

03-28 13:29:36.734 13129-13338/com.example.felix.thread_andorid D/TAG: Thread-159通过接口实现线程
03-28 13:29:36.737 13129-13339/com.example.felix.thread_andorid D/TAG: Thread-160通过接口实现线程
多个代理卖火车票实例
public class SaleTicket implements Runnable {
private  int ticketNum=20;//火车票总数
@Override
public void run() {
    while (true) {
        //线程同步
        synchronized (this){
            if (ticketNum>0){
                Log.d("TAG",Thread.currentThread().getName()+"剩余火车票"+ticketNum+"张");
                ticketNum--;
            }
            else {
                break;
            }
        }
        try {
            Thread.sleep(200);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

    }
 }
}

定义测试方法:

public  void  saleTicket(){
    SaleTicket saleTicket = new SaleTicket();
    //多个线程操作同一个目标对象
    Thread tr1 = new Thread(saleTicket,"A代理");
    Thread tr2 = new Thread(saleTicket,"B代理");
    Thread tr3 = new Thread(saleTicket,"C代理");
    Thread tr4 = new Thread(saleTicket,"D代理");
    tr1.start();
    tr2.start();
    tr3.start();
    tr4.start();

}

终端输出:

03-28 13:47:42.390 24262-24442/com.example.felix.thread_andorid D/TAG: D代理剩余火车票6张
03-28 13:47:42.404 24262-24441/com.example.felix.thread_andorid D/TAG: C代理剩余火车票5张
03-28 13:47:42.590 24262-24442/com.example.felix.thread_andorid D/TAG: D代理剩余火车票4张
03-28 13:47:42.594 24262-24440/com.example.felix.thread_andorid D/TAG: B代理剩余火车票3张
03-28 13:47:42.594 24262-24439/com.example.felix.thread_andorid D/TAG: A代理剩余火车票2张
03-28 13:47:42.606 24262-24441/com.example.felix.thread_andorid D/TAG: C代理剩余火车票1张

通过继承Thread类实现和通过实现Runnabel接口的区别:

  • java属于单继承,存在一定的局限性;
  • Runnbale接口适合于资源共享;

线程池的应用

线程池的好处:

  • 重用存在的线程,减少对象创建,消亡的开销,性能较好;
  • 可有效控制最大并发线程数,提高系统资源的使用率。同时避免过多资源竞争,避免浪费;
  • 提供定时执行,定期执行,单线程、并发数控制等功能。

Java四种线程池

  • newCachedThreadPool:可缓存线程池,如果线程长度超过处理需要,可灵活回收空闲线程,若无可回收线程则创建一个新的线程;

      public  void  testCachThreadPool(){
      ExecutorService executorService = Executors.newCachedThreadPool();
      //实现10个并发的任务
      for (int i = 0; i < 10; i++) {
          final  int index = i;
          executorService.execute(new Runnable() {
              @Override
              public void run() {
                  Log.d("TAG",Thread.currentThread().getName()+" ---当前线程 "+index);
              }
          });
      }
      }
    

终端输出:

03-28 14:09:43.623 1126-2831/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 0
03-28 14:09:43.637 1126-2831/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 3
03-28 14:09:43.649 1126-2831/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 6
03-28 14:09:43.657 1126-2831/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 8
03-28 14:09:43.664 1126-2837/com.example.felix.thread_andorid D/TAG: pool-2-thread-6 ---当前线程 7
03-28 14:09:43.665 1126-2832/com.example.felix.thread_andorid D/TAG: pool-2-thread-2 ---当前线程 1
03-28 14:09:43.666 1126-2836/com.example.felix.thread_andorid D/TAG: pool-2-thread-5 ---当前线程 5
03-28 14:09:43.673 1126-2835/com.example.felix.thread_andorid D/TAG: pool-2-thread-4 ---当前线程 4
03-28 14:09:43.679 1126-2833/com.example.felix.thread_andorid D/TAG: pool-2-thread-3 ---当前线程 2
03-28 14:09:43.682 1126-2838/com.example.felix.thread_andorid D/TAG: pool-2-thread-7 ---当前线程 9

修改代码:

public  void  testCachThreadPool(){
    ExecutorService executorService = Executors.newCachedThreadPool();
    //实现10个并发的任务
    for (int i = 0; i < 10; i++) {
        try {
            Thread.sleep(2000);//每执行一次任务休息两秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        final  int index = i;
        executorService.execute(new Runnable() {
            @Override
            public void run() {
                Log.d("TAG",Thread.currentThread().getName()+" ---当前线程 "+index);
            }
        });
    }
    }

终端输出:

03-28 14:15:41.549 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 0
03-28 14:15:43.550 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 1
03-28 14:15:45.551 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 2
03-28 14:15:47.553 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 3
03-28 14:15:49.556 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 4
03-28 14:15:51.561 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 5
03-28 14:15:53.562 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 6
03-28 14:15:55.564 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 7
03-28 14:15:57.565 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 8
03-28 14:15:59.566 1126-7361/com.example.felix.thread_andorid D/TAG: pool-3-thread-1 ---当前线程 9

当前我们让每执行一次任务休息两秒后,我们发现10次并发任务的执行过程中只使用了一个线程。这是因为newCachedThreadPool能够回收空闲的线程。

  • newFixedThreadPool: 创建一个定长的线程池,可控制线程的最大并发数,超出的线程会在队列中等待。

      public void testFixedThreadPool() {
      ExecutorService executorService = Executors.newFixedThreadPool(3);
      for (int i = 0; i < 10; i++) {
          final  int index = i;
          executorService.execute(new Runnable() {
              @Override
              public void run() {
                  Log.d("TAG",Thread.currentThread().getName()+" ---当前线程 "+index);
                  try {
                      Thread.sleep(2000);
                  } catch (InterruptedException e) {
                      e.printStackTrace();
                  }
              }
          });
      }
      }
    

终端输出:

    03-28 14:25:26.900 11037-12323/com.example.felix.thread_andorid D/TAG: pool-2-thread-3 ---当前线程 2
    03-28 14:25:26.933 11037-12321/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 0
    03-28 14:25:26.934 11037-12322/com.example.felix.thread_andorid D/TAG: pool-2-thread-2 ---当前线程 1
    03-28 14:25:28.902 11037-12323/com.example.felix.thread_andorid D/TAG: pool-2-thread-3 ---当前线程 3
    03-28 14:25:28.935 11037-12321/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 4
    03-28 14:25:28.935 11037-12322/com.example.felix.thread_andorid D/TAG: pool-2-thread-2 ---当前线程 5
    03-28 14:25:30.903 11037-12323/com.example.felix.thread_andorid D/TAG: pool-2-thread-3 ---当前线程 6
    03-28 14:25:30.936 11037-12322/com.example.felix.thread_andorid D/TAG: pool-2-thread-2 ---当前线程 7
    03-28 14:25:30.938 11037-12321/com.example.felix.thread_andorid D/TAG: pool-2-thread-1 ---当前线程 8
    03-28 14:25:32.906 11037-12323/com.example.felix.thread_andorid D/TAG: pool-2-thread-3 ---当前线程 9

因为最大的线程数被设置为3,所以是每隔两秒执行三个任务。直观的表现是,终端每个两秒打印出三条语句。

  • newsingalThreadExecutor:创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证任务按照指定顺序(FIFO,LIFO,优先级)执行。
    public void testSingalThread(){
        ExecutorService executorService = Executors.newSingleThreadExecutor();
        for (int i = 0; i < 10; i++) {
            final  int index = i;
            executorService.execute(new Runnable() {
                @Override
                public void run() {
                    Log.d("TAG",Thread.currentThread().getName()+" ---当前线程 "+index);
                    try {
                        Thread.sleep(2000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            });
        }
    }

程序在运行过程中只会只用一个线程来执行10个任务。

  • newScheduledThreadPool:创建一个定长线程池,支持定时及周期性任务执行。
    public void testScheduledThreadPool(){
    Log.d("TAG","testScheduled");
    ScheduledExecutorService scheduledExecutorService = Executors.newSingleThreadScheduledExecutor();
    //定时三秒以后执行
    /*schedule()方法:
    * 第一个参数:执行的线程任务;
    * 第二个参数:时间量;
    * 第三个参数:时间量的单位。
    * */
    scheduledExecutorService.schedule(new Runnable() {
        @Override
        public void run() {
            Log.d("TAG","delay 3 seconds");
        }
    },3, TimeUnit.SECONDS);
     }

终端输出:

03-28 15:09:21.169 23078-23078/com.example.felix.thread_andorid D/TAG: testScheduled
03-28 15:09:24.172 23078-23224/com.example.felix.thread_andorid D/TAG: delay 3 seconds

周期性定时执行任务

/*周期性的定时执行*/
    //定时两秒后执行,每个三秒再执行一次
 scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
        @Override
        public void run() {
          Log.d("TAG","delay 3 seconds");
      }
        },2,3,TimeUnit.SECONDS);
 scheduledExecutorService.shutdown();//关闭周期性执行任务

终端输出:

03-28 15:23:22.607 23078-23078/com.example.felix.thread_andorid D/TAG: testScheduled
03-28 15:23:24.609 23078-28404/com.example.felix.thread_andorid D/TAG: delay 3 seconds
03-28 15:23:27.610 23078-28404/com.example.felix.thread_andorid D/TAG: delay 3 seconds
03-28 15:23:30.609 23078-28404/com.example.felix.thread_andorid D/TAG: delay 3 seconds
03-28 15:23:33.609 23078-28404/com.example.felix.thread_andorid D/TAG: delay 3 seconds

仔细观察每条输出语句的时间。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容