시간 측정 도구 간단 정리 TIL/Java/시간_측정_도구.md at main · huitopia/TIL 📝 Today I Learned. Contribute to huitopia/TIL development by creating an account on GitHub. github.com System.currentTimeMillis() & System.nanoTime() 활용 public class CodeRunTime { public static void main(String[] args) { long millsStart = System.currentTimeMillis(); long nanoStart = System.nanoTime(); for (int i = 0; i < 1000000; i++) { ..