Main.java 311 B

1234567891011121314151617
  1. public class Main {
  2. public static void main (String argv[]) {
  3. Thread tA, tB;
  4. boolean doYield = false;
  5. if (doYield)
  6. System.out.println("Do yield");
  7. else
  8. System.out.println("NOT do yield");
  9. tA = new DispTask(doYield, "tA");
  10. tB = new DispTask(doYield, "tB");
  11. tA.start();
  12. tB.start();
  13. }
  14. }