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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

Sing_Ls

中级黑马

  • 黑马币:48

  • 帖子:34

  • 精华:0

求大家给个思路,给传代码,谢谢大家啦!

4 个回复

倒序浏览
这样久,都没人理我,算了,我把答案给我自己吧
回复 使用道具 举报
  1. package com.itheima;

  2. import java.util.Random;



  3. public class Test2 {

  4.         /**
  5.          * 创建类,实现Runable接口,实现run方法
  6.          * @param args
  7.          */
  8.         public static void main(String[] args){
  9.                 //开启两个线程,向数组中添加数据
  10.                
  11.                 Thread thread1 = new Thread(new Demo(),"thread1");
  12.                 Thread thread2 = new Thread(new Demo(),"thread2");
  13.                
  14.                 thread1.start();
  15.                 thread2.start();
  16.         }
  17.        
  18.        
  19.         public static class Demo implements Runnable{
  20.                 //共享数组
  21.                  String[] datas = new String[6];
  22.                
  23.                 //添 加数据个数
  24.                  int position = 0;
  25.                

  26.                
  27.                 public void run(){
  28.                         //没一个线程添加数据的个数,计数器
  29.                         int count = 1;
  30.                         Random random = new Random();
  31.                        
  32.                         //没一个线程只添加3个数据
  33.                         while(count<=3){
  34.                                 try{
  35.                                         //通过sleep实现随机时间添加
  36.                                         Thread .sleep(random.nextInt(2000));
  37.                                        
  38.                                         //实现代码同步
  39.                                         synchronized(datas){
  40.                                                 //添加数据
  41.                                                 datas[position] = Thread.currentThread().getName()+"."+count;
  42.                                                 System.out.println("线程"+Thread.currentThread().getName()+"添加数据:"+count);
  43.                                                 count++;
  44.                                                 position++;
  45.                                         }
  46.                                 }catch (Exception e){
  47.                                         e.printStackTrace();
  48.                                 }
  49.                         }
  50.                 }
  51.         }
  52.        

  53. }
复制代码
回复 使用道具 举报

大神,直接进黑马吧。不用考试了。。
回复 使用道具 举报
哪有大神直说啊,直接垃圾了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马