⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gctest10.java

📁 Java Op Processor java vhdl processor
💻 JAVA
字号:
package gctest;import util.Dbg;import util.Timer;import joprt.RtThread;import com.jopdesign.sys.*;// A timing test of the GCStackWalkerpublic class GCTest10 {  static Object mutex;  public static void main(String s[]) {    System.out.println("GC Example 10");    // Results in us:    // threadcnt  | conservative | exact    // (nt+1)     | block  total | block totol    // 1 (nt=0)   |                      // 10 (nt=9)  |                   // 100 (nt=99)|             // Number of extra threads in addition to main thread:    int nt = 9;    for (int i = 0; i < nt; i++) {      System.out.print("Extra thread:");      System.out.println(i);      new RtThread(20 + i, 2000000 + i) {        public void run() {          waitForNextPeriod();        }      };    }    RtThread.startMission();    int ts;    synchronized (mutex) {      ts = Timer.us();      GC.gc();      ts = Timer.us() - ts;    }    System.out.print("Total GC took ");    System.out.print(ts);    System.out.println(" us");    System.exit(0);  } // main}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -