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

📄 timer.java

📁 java版ace,java程序员值得一看
💻 JAVA
字号:
// This class encapsulates a Timer  mechanism // Can be used for Profiling of parts of code and gathering statistics package NexusII ; public class Timer { public Timer(){  start_ = 0 ; 		}public void start(){  start_ = System.currentTimeMillis(); }public  long elapsed_time(){  return System.currentTimeMillis() - start_ ; }public void stop(){  start_ = 0 ; }private long start_ = 0 ; }

⌨️ 快捷键说明

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