동기작업이 순차적으로 실행된다. 하나의 작업이 끝나야 다음 작업을 진행할 수 있다. public void syncExample() { System.out.println("파일 다운로드 시작"); downloadFile(); // 파일 다운로드가 끝날 때까지 대기 System.out.println("파일 다운로드 완료");}public void downloadFile() { try { Thread.sleep(3000); // 3초 동안 대기 (파일 다운로드 시뮬레이션) } catch (InterruptedException e) { e.printStackTrace(); }} 파일 다운로드가 끝날 때 까지 기다렸다가 아래의 다운로드 완료를 찍는다. 비동..