zoukankan      html  css  js  c++  java
  • 第16周作业

    题目1:

    编写一个应用程序,利用Java多线程机制,实现时间的同步输出显示。

    代码:

    import java.util.Date;
    
    public class test extends Thread {
        public void run() {                              
            Date date;
            while(true){
                date = new Date();
                System.out.println(date);                
                try {
                    sleep(10000);                         
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
        public static void main(String[] args) {
            test time = new test();
            time.start();
        }
    }
     

     

    运行

    题目2:编写一个应用程序,利用Java多线程机制,实现猜数字游戏(随机数范围0~100之间的整数)。

    题目1:编写一个应用程序,利用Java多线程机制,实现时间的同步输出显示。

    代码

    1.ThreadObject.java

     

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    /**
     * 创建线程类,定义date对象
     */
    import java.util.Date;
    public class ThreadObject implements Runnable{
        public void run() {
            Date date;
            while(true){
                date = new Date();
                System.out.println(date);
                try {
                    Thread.sleep(1000);   //将线程进入休眠
                catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                 
            }
             
        }
         
     
    }

    2.Test.java

    1
    2
    3
    4
    5
    6
    7
    8
    9
    public class Test {
        public static void main(String[] args) {
            Thread time = new Thread(new ThreadObject()); //声明线程对象
            time.start();       //时time线程进入等待队列
         
     
        }
     
    }

    运行结果

  • 相关阅读:
    邻接矩阵
    任务分配book
    10327
    二分+叉积判断方向 poj 2318 2398
    圆内,求离圆心最远的整数点 hiho一下第111周 Farthest Point
    2016年CCF第七次测试 俄罗斯方块
    trie树 Codeforces Round #367 D Vasiliy's Multiset
    十字链表 Codeforces Round #367 E Working routine
    树形DP CCPC网络赛 HDU5834 Magic boy Bi Luo with his excited tree
    (四面体)CCPC网络赛 HDU5839 Special Tetrahedron
  • 原文地址:https://www.cnblogs.com/When6/p/12077874.html
Copyright © 2011-2022 走看看