欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

线程间通信的方式有哪些(linux线程间通信的方法)

程序员文章站 2023-11-18 09:29:46
尽管通常每个子线程只需要完成自己的任务,但是有时我们可能希望多个线程一起完成一个任务,这涉及线程间的通信。该方法和本文中涉及的类是:thread.join(),object.wait(),object...

尽管通常每个子线程只需要完成自己的任务,但是有时我们可能希望多个线程一起完成一个任务,这涉及线程间的通信。

该方法和本文中涉及的类是:thread.join(),object.wait(),object.notify(),countdownlatch,cyclicbarrier,futuretask,callable等。

这是本文涵盖的代码

我将使用几个示例来说明如何在java中实现线程间通信。

如何使两个线程按顺序执行?如何使两个线程以指定的方式有序相交?有四个线程:a,b,c和d(在a,b和c都完成执行并且a,b和c必须同步执行之前,不会执行d)。三名运动员准备分开,然后在他们各自准备就绪后同时开始跑步。子线程完成任务后,它将结果返回给主线程。

如何使两个线程按顺序执行?

假设有两个线程:线程a和线程b。两个线程都可以依次打印三个数字(1-3)。让我们看一下代码:

private static void demo1() {
    thread a = new thread(new runnable() {
        @override
        public void run() {
            printnumber("a");
        }
    });
    thread b = new thread(new runnable() {
        @override
        public void run() {
            printnumber("b");
        }
    });
    a.start();
    b.start();
}

的实现printnumber(string)如下,用于依次打印1、2和3这三个数字:

private static void printnumber(string threadname) {
    int i=0;
    while (i++ < 3) {
        try {
            thread.sleep(100);
        } catch (interruptedexception e) {
            e.printstacktrace();
        }
        system.out.println(threadname + "print:" + i);
    }
}

我们得到的结果是:

b print: 1
a print: 1
b print: 2
a print: 2
b print: 3
a print: 3

您可以看到a和b同时打印数字。

那么,如果我们希望b在a打印完之后开始打印呢?我们可以使用该thread.join()方法,代码如下:

private static void demo2() {
    thread a = new thread(new runnable() {
        @override
        public void run() {
            printnumber("a");
        }
    });
    thread b = new thread(new runnable() {
        @override
        public void run() {
            system.out.println("b starts waiting for a");
            try {
                a.join();
            } catch (interruptedexception e) {
                e.printstacktrace();
            }
            printnumber("b");
        }
    });
    b.start();
    a.start();
}

现在获得的结果是:

b starts waiting for a
a print: 1
a print: 2
a print: 3
 
b print: 1
b print: 2
b print: 3

因此,我们可以看到该a.join()方法将使b等待直到a完成打印。

如何使两个线程以指定的方式有序地相交?

那么,如果现在我们希望b在a打印完1之后立即开始打印1,2,3,然后a继续打印2,3呢?显然,我们需要更多细粒度地锁来控制执行顺序。

在这里,我们可以利用object.wait()和object.notify()方法的优势。代码如下:

/**
 * a 1, b 1, b 2, b 3, a 2, a 3
 */
private static void demo3() {
    object lock = new object();
    thread a = new thread(new runnable() {
        @override
        public void run() {
            synchronized (lock) {
                system.out.println("a 1");
                try {
                    lock.wait();
                } catch (interruptedexception e) {
                    e.printstacktrace();
                }
                system.out.println("a 2");
                system.out.println("a 3");
            }
        }
    });
    thread b = new thread(new runnable() {
        @override
        public void run() {
            synchronized (lock) {
                system.out.println("b 1");
                system.out.println("b 2");
                system.out.println("b 3");
                lock.notify();
            }
        }
    });
    a.start();
    b.start();
}

结果如下:

a 1
a waiting…
 
b 1
b 2
b 3
a 2
a 3

那就是我们想要的。

怎么了?

首先,我们创建一个由a和b共享的对象锁: lock = new object();当a得到锁时,它首先打印1,然后调用lock.wait()使它进入等待状态的方法,然后移交对锁的控制。在a调用lock.wait()释放控制的方法并且b获得锁之前,b将不会执行。b得到锁后打印1、2、3,然后调用该lock.notify()方法唤醒正在等待的a;唤醒后,a将继续打印其余的2、3。

我将日志添加到上面的代码中,以使其更易于理解。

private static void demo3() {
    object lock = new object();
    thread a = new thread(new runnable() {
        @override
        public void run() {
            system.out.println("info: a is waiting for the lock");
            synchronized (lock) {
                system.out.println("info: a got the lock");
                system.out.println("a 1");
                try {
                    system.out.println("info: a is ready to enter the wait state, giving up control of the lock");
                    lock.wait();
                } catch (interruptedexception e) {
                    e.printstacktrace();
                }
                system.out.println("info: b wakes up a, and a regains the lock");
                system.out.println("a 2");
                system.out.println("a 3");
            }
        }
    });
    thread b = new thread(new runnable() {
        @override
        public void run() {
            system.out.println("info: b is waiting for the lock");
            synchronized (lock) {
                system.out.println("info: b got the lock");
                system.out.println("b 1");
                system.out.println("b 2");
                system.out.println("b 3");
                system.out.println("info: b ends printing, and calling the notify method");
                lock.notify();
            }
        }
    });
    a.start();
    b.start();

结果如下:

info: a is waiting for the lock
info: a got the lock
a 1
info: a is ready to enter the wait state, giving up control of the lock
info: b is waiting for the lock
info: b got the lock
b 1
b 2
b 3
info: b ends printing, and calling the notify method
info: b wakes up a, and a regains the lock
a 2
a 3

在a,b和c都完成同步执行之后执行d

thread.join()前面介绍的方法允许一个线程在等待另一个线程完成运行之后继续执行。但是,如果我们将a,b和c顺序连接到d线程中,它将使a,b和c依次执行,而我们希望它们三个同步运行。

我们要达到的目标是:三个线程a,b和c可以同时开始运行,并且每个线程在独立运行完成后都将通知d。在a,b和c全部完成运行之后,d才会开始运行。因此,我们用于countdownlatch实现这种类型的通信。其基本用法是:

  1. 创建一个计数器,并设置一个初始值, countdownlatch countdownlatch = new countdownlatch(3;
  2. countdownlatch.await()在等待线程中调用该方法,并进入等待状态,直到计数值变为0为止;否则,进入等待状态。
  3. countdownlatch.countdown()在其他线程中调用该方法,该方法会将计数值减少一;
  4. 当countdown()其他线程中的方法将计数值设为0时,countdownlatch.await()等待线程中的方法将立即退出并继续执行以下代码。

实现代码如下:

private static void rundafterabc() {
    int worker = 3;
    countdownlatch countdownlatch = new countdownlatch(worker);
    new thread(new runnable() {
        @override
        public void run() {
            system.out.println("d is waiting for other three threads");
            try {
                countdownlatch.await();
                system.out.println("all done, d starts working");
            } catch (interruptedexception e) {
                e.printstacktrace();
            }
        }
    }).start();
    for (char threadname='a'; threadname <= 'c'; threadname++) {
        final string tn = string.valueof(threadname);
        new thread(new runnable() {
            @override
            public void run() {
                system.out.println(tn + "is working");
                try {
                    thread.sleep(100);
                } catch (exception e) {
                    e.printstacktrace();
                }
                system.out.println(tn + "finished");
                countdownlatch.countdown();
            }
        }).start();
    }
}

结果如下:

d is waiting for other three threads
a is working
b is working
c is working
 
a finished
c finished
b finished
all done, d starts working

实际上,countdownlatch它本身是一个倒数计数器,我们将初始计数值设置为3。运行d时,它首先调用该countdownlatch.await()方法以检查计数器值是否为0,如果该值不为0,它将保持等待状态。 。a,b和c分别countdownlatch.countdown()完成独立运行后,将使用该方法将倒数计数器递减1。当它们全部三个完成运行时,计数器将减少为0;否则,计数器将减少为0。然后,await()将触发d的方法以结束a,b和c,并且d将开始继续执行。

因此,countdownlatch适用于一个线程需要等待多个线程的情况。

3名跑步者准备跑步

三个跑步者准备分开,然后在每个人准备就绪后同时开始跑步。

这次,三个线程a,b和c中的每个线程都需要分别进行准备,然后在三个线程全部准备好之后就开始同时运行。我们应该如何实现呢?

在countdownlatch上面可以用来计数下降,但完成计数的时候,只有一个线程的一个await()方法会得到响应,所以多线程不能在同一时间被触发。

为了达到线程互相等待的效果,我们可以使用cyclicbarrier数据结构,其基本用法是:

  1. 首先创建一个公共对象cyclicbarrier,并设置同时等待的线程数,cyclicbarrier cyclicbarrier = new cyclicbarrier(3);
  2. 这些线程开始同时进行准备。准备好之后,他们需要等待其他人完成准备工作,因此调用该cyclicbarrier.await()方法来等待其他人;
  3. 当需要同时等待的指定线程全部调用该cyclicbarrier.await()方法时,这意味着这些线程已准备就绪,那么这些线程将开始继续同时执行。

实现代码如下。想象一下,有三位跑步者需要同时开始跑步,因此他们需要等待其他跑步者,直到所有人都准备就绪为止。

private static void runabcwhenallready() {
    int runner = 3;
    cyclicbarrier cyclicbarrier = new cyclicbarrier(runner);
    final random random = new random();
    for (char runnername='a'; runnername <= 'c'; runnername++) {
        final string rn = string.valueof(runnername);
        new thread(new runnable() {
            @override
            public void run() {
                long preparetime = random.nextint(10000) + 100;
                system.out.println(rn + "is preparing for time:" + preparetime);
                try {
                    thread.sleep(preparetime);
                } catch (exception e) {
                    e.printstacktrace();
                }
                try {
                    system.out.println(rn + "is prepared, waiting for others");
                    cyclicbarrier.await(); // the current runner is ready, waiting for others to be ready
                } catch (interruptedexception e) {
                    e.printstacktrace();
                } catch (brokenbarrierexception e) {
                    e.printstacktrace();
                }
                system.out.println(rn + "starts running"); // all the runners are ready to start running together
            }
        }).start();
    }
}

结果如下:

a is preparing for time: 4131
b is preparing for time: 6349
c is preparing for time: 8206
 
a is prepared, waiting for others
 
b is prepared, waiting for others
 
c is prepared, waiting for others
 
c starts running
a starts running
b starts running

子线程将结果返回到主线程

在实际开发中,通常我们需要创建子线程来执行一些耗时的任务,然后将执行结果传递回主线程。那么如何在java中实现呢?

因此,通常,在创建线程时,我们会将runnable对象传递给thread以便执行。runnable的定义如下:

public interface runnable {
    public abstract void run();
}

您可以看到该run()方法执行后不返回任何结果。如果要返回结果怎么办?在这里,您可以使用另一个类似的接口类callable:

@functionalinterface
public interface callable<v> {
    /**
     * computes a result, or throws an exception if unable to do so.
     *
     * @return computed result
     * @throws exception if unable to compute a result
     */
    v call() throws exception;
}

可以看出,最大的区别callable在于它返回了泛型。

因此,下一个问题是,如何将子线程的结果传递回去?java有一个类,futuretask可以与一起使用callable,但是请注意,get用于获取结果的方法将阻塞主线程。

例如,我们希望子线程计算从1到100的总和,然后将结果返回给主线程。

private static void dotaskwithresultinworker() {
    callable<integer> callable = new callable<integer>() {
        @override
        public integer call() throws exception {
            system.out.println("task starts");
            thread.sleep(1000);
            int result = 0;
            for (int i=0; i<=100; i++) {
                result += i;
            }
            system.out.println("task finished and return result");
            return result;
        }
    };
    futuretask<integer> futuretask = new futuretask<>(callable);
    new thread(futuretask).start();
    try {
        system.out.println("before futuretask.get()");
        system.out.println("result:" + futuretask.get());
        system.out.println("after futuretask.get()");
    } catch (interruptedexception e) {
        e.printstacktrace();
    } catch (executionexception e) {
        e.printstacktrace();
    }
}

结果如下:

before futuretask.get()
 
task starts
task finished and return result
 
result: 5050
after futuretask.get()

可以看出,当主线程调用该futuretask.get()方法时,它将阻塞主线程。然后callable开始在内部执行并返回操作结果;然后futuretask.get()获取结果,主线程恢复运行。

在这里,我们可以了解到futuretask和callable可以直接在主线程中获得子线程的结果,但是它们会阻塞主线程。当然,如果您不想阻塞主线程,可以考虑使用executorservice将futuretask线程放入线程池来管理执行。

概括

多线程是现代语言的常见功能,线程间通信,线程同步和线程安全是非常重要的主题。