运行 ❯
获取您自己的
Java 服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
public class Main implements Runnable { public static void main(String[] args) { Main obj = new Main(); Thread thread = new Thread(obj); thread.start(); System.out.println("This code is outside of the thread"); } public void run() { System.out.println("This code is running in a thread"); } }
这段代码位于线程之外
这段代码在线程中运行