728x90 executors1 Concurrent programming Concurrent software는 동시에 여러 작업을 할 수 있는 소프트웨어이다. 자바에서는 다음과 같은 concurrent programming을 지원한다 1. multi processing 2. multi thread 자바는 멀티쓰레딩을 설정하지 않는 한 기본적으로 main thread에서 동작한다. 자바에서 multi thread를 사용할려면 다음과 같은 방식을 사용하면 된다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class App { //클래스를 만들어서 사용하는 public static void main(String[] args) { MyThread myThread = new MyThread(); myThread.start(); S.. 2021. 11. 22. 이전 1 다음 728x90