Computer Science25 동기 Async 와 비동기 ASync * 동기와 비동기 개념 - 동기 (sync) : A라는 작업이 끝나는 동시에 B라는 작업을 시작한다.public class AsyncExample { public static void main(String[] args) { /* 작업1 시작 */ try { Thread.sleep(1500); } catch (InterruptedException e) { e.printStackTrace(); } /* 작업1 종료 */ /* 작업2 시작 */ try { Thread.sleep(500); } catch(InterruptedExcep.. 2024. 11. 18. 이전 1 2 3 4 5 다음