A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© huburt 中级黑马   /  2016-5-28 10:33  /  405 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

有一个Person类,私有成员属性age,相应的get和set方法。用两个线程对age属性赋值,a线程每次赋age+2的值,b线程不改变age的值,操作10次。
  1. public class Test1 {
  2.         static int times = 1;

  3.         public static void main(String[] args) {
  4.                 Person p = new Person(50);
  5.                 new Thread() {
  6.                         public void run() {
  7.                                 method(p, 2);

  8.                         };
  9.                 }.start();
  10.                 new Thread() {
  11.                         public void run() {
  12.                                 method(p, 0);
  13.                         };
  14.                 }.start();
  15.                 System.out.println(p.getWeight());
  16.         }

  17.         public static void method(Person p, int i) {
  18.                 while (true) {
  19.                         synchronized (Test1.class) {
  20.                                 if (times >= 10) {
  21.                                         break;
  22.                                 }
  23.                                 try {
  24.                                         Thread.sleep(10);
  25.                                 } catch (InterruptedException e) {
  26.                                         // TODO Auto-generated catch block
  27.                                         e.printStackTrace();
  28.                                 }
  29.                                 p.setWeight(p.getWeight() + i);
  30.                                 System.out.println(p.getWeight());
  31.                                 times++;
  32.                         }
  33.                 }

  34.         }

  35. }

  36. class Person {
  37.         private int weight;

  38.         public Person(int weight) {
  39.                 super();
  40.                 this.weight = weight;
  41.         }

  42.         public int getWeight() {
  43.                 return weight;
  44.         }

  45.         public void setWeight(int weight) {
  46.                 this.weight = weight;
  47.         }

  48. }
复制代码

1 个回复

倒序浏览
while (true) 也能使用for循环吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马