profilertest.java
来自「此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作」· Java 代码 · 共 21 行
JAVA
21 行
package profiler;
public class ProfilerTest {
public static void main(String args[]) {
Profiler p = new Profiler();
// Start the profiler
p.Start("A routine");
for (long nCounter = 0; nCounter < 100; nCounter++) {
System.out.println(nCounter);
}
p.Stop();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?