SpencerPark / IJava

A Jupyter kernel for executing Java code.
MIT License
1.07k stars 211 forks source link

Error when print log in new Thread #115

Open Flyfoxs opened 3 years ago

Flyfoxs commented 3 years ago

Sometime (not always) the result of the code is "endbegin", it can get more detail from the screenshot as below

Thread t1= new Thread(()->{
                System.out.println("begin");
                System.out.println("end");
        });
t1.start();

image-20201202144001106