Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

java - Why does the FirstThread always run before the SecondThread in the following code?

public class TowThreads {
    public static class FirstThread extends Thread {
        public void run() {
            for (int i = 2; i < 100000; i++) {
                if (isPrime(i)) {
                    System.out.println("A");
                    System.out.println("B");
                }
            }
        }

        private boolean isPrime(int i) {
            for (int j = 2; j < i; j++) {
                if (i % j == 0)
                    return false;
            }
            return true;
        }
    }

    public static class SecondThread extends Thread {
        public void run() {
            for (int j = 2; j < 100000; j++) {
                if (isPrime(j)) {
                    System.out.println("1");
                    System.out.println("2");
                }
            }
        }

        private boolean isPrime(int i) {
            for (int j = 2; j < i; j++) {
                if (i % j == 0)
                    return false;
            }
            return true;
        }
    }

    public static void main(String[] args) {
        new FirstThread().run();
        new SecondThread().run();
    }
}

The output shows that the FirstThread always runs before the SecondThread which is opposite from the article I read.

Why?Must the first thread run before the second thread? If not, could you show me a good example? Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use start not run

public static void main(String[] args) {
        new FirstThread().start();
        new SecondThread().start();
    }

If you use run method, you call first method and after second method. If you want to run parallel threads, you must use start method of thread.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...