• 七. 多线程编程5.创建多线程


    到目前为止,我们仅用到两个线程:主线程和一个子线程。然而,你的程序可以创建所需的更多线程。例如,下面的程序创建了三个子线程:
    // Create multiple threads.
    class NewThread implements Runnable {
        String name; // name of thread
        Thread t;
        NewThread(String threadname) {
            name = threadname;
            t = new Thread(this, name);
            System.out.println("New thread: " + t);
            t.start(); // Start the thread
        }

        // This is the entry point for thread.
        public void run() {
            try {
                for(int i = 5; i > 0; i--) {
                   System.out.println(name + ": " + i);
                   Thread.sleep(1000);
                }
            } catch (InterruptedException e) {
                System.out.println(name + "Interrupted");
            }
            System.out.println(name + " exiting.");
        }
    }

    class MultiThreadDemo {
        public static void main(String args[]) {
            new NewThread("One"); // start threads www.xuancayule.com 
            new NewThread("Two");
            new NewThread("Three");
            try {
                // wait for other threads to end
                Thread.sleep(10000);
            } catch (InterruptedException e) {
                System.out.println("Main thread Interrupted");
            }
            System.out.println("Main thread exiting.");
        }
    }

    程序输出如下所示:
    New thread: Thread[One,5,main]
    New thread: Thread[Two,5,main]
    New thread: Thread[Three,5,main]
    One: 5
    Two: 5
    Three: 5
    One: 4
    Two: 4
    Three: 4
    One: 3
    Three: 3
    Two: 3
    One: 2
    Three: 2
    Two: 2
    One: 1
    Three: 1
    Two: 1
    One exiting.
    Two exiting.
    Three exiting.
    Main thread exiting.

    如你所见,一旦启动,所有三个子线程共享CPU。注意main()中对sleep(10000)的调用。这使主线程沉睡十秒确保它最后结束。

  • 相关阅读:
    Crypto++库安装、测试
    Unix环境高级编程(一)
    Unix 环境高级编程
    C++加密解密库之选择
    python简单网页服务器示例
    使用resteasy作为dubbox消费者
    oracle驱动包maven下载失败解决
    dubbox下载编译运行demo
    Linux环境变量从用户配置改为系统配置
    @Override注解在Eclipse中编译报错
  • 原文地址:https://www.cnblogs.com/ok932343846/p/6831879.html
Copyright © 2020-2023  润新知