SpencerPark / IJava

A Jupyter kernel for executing Java code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error when print log in new Thread

Flyfoxs opened this issue · comments

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