首先我们先编写一个简单的多线程代码:
classMyThreadextendsThread{ publicvoidrun() { while (true) { System.out.println("创建的一个新线程"); //让循环慢一点try { Thread.sleep(1000); } catch (InterruptedExceptione) { thrownewRuntimeException(e); } } } } publicclassTest { publicstaticvoidmain(String[] args) { Threadtmp=newMyThread(); tmp.start(); while (true){ System.out.println("main线程"); //让循环慢一点try { Thread.sleep(1000); } catch (InterruptedExceptione) { thrownewRuntimeException(e); } } } }
这个代码就是简单的创建了一个新线程,让新线程和旧线程分别打印不同的东西。
以下就是正文了:
第一步:运行上述代码(注:以下操作过程中都必须保证代码处在运行状态)
第二步:找到JDK安装的位置
如果你的代码环境是IDEA并且忘记了JDK的安装位置可以参考下列步骤:
第三步:进入JDK的bin目录找到 jconsole.exe并打开(如果打开什么都没有可以尝试使用管理员身份打开)
第四步:选中你运行代码的文件名
第五步:点击连接之后点击不安全连接
希望上述内容可以帮助到你。