16
자바에 스톱워치가 있습니까?
자바에 스톱워치가 있습니까? Google에서는 작동하지 않는 스톱워치 코드 만 찾습니다. 항상 0 밀리 초를 반환합니다. 내가 찾은이 코드는 작동하지 않지만 이유를 모르겠습니다. public class StopWatch { private long startTime = 0; private long stopTime = 0; private boolean running = false; public void start() { this.startTime = System.currentTimeMillis(); this.running = …