Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {
    public static void main(String[] argv) throws Exception {
        MyThread thread = new MyThread();
        thread.start();

        thread.stop = true;
    }
}

class MyThread extends Thread {
    boolean stop = false;

    public void run() {
        while (true) {
            if (stop) {
                return;
            }
        }
    }
}