本博客简介介绍一下java线程的join方法,join方法是实现线程同步,可以将原本并行执行的多线程方法变成串行执行的 如图所示代码,是并行执行的 public class ThreadTest { //private static final Long count = 10000L; public static void main(String[] args){ long base = System.currentTimeMillis(); try { ThreadJoin t1 = new…
1.第一个示例: package cn.threaddemo; public class T implements Runnable { public static int a = 0; @Override public void run() { System.out.print("t线程中的a:"); for (int k = 0; k < 5; k++) { a = a + 1; System.out.print(" "+a); } } public st…
指在一线程里面调用另一线程join方法时,表示将本线程阻塞直至另一线程终止时再执行 比如 using System; namespace TestThreadJoin { class Program { static void Main() { System.Threading.Thread x = new System.Threading.Thread(new System.Threading.ThreadStart(f1)); x.Start(); Console.WriteLin…