Thread2 Queues & Threads - Concurrency by Tutorials Chapter 3: Queues & Threads Concurrency by Tutorials In this part of the book, you're going to learn about the basics of Concurrency. You're going to learn what it is, what kind of problems it solves, and why would you even use it? Further, you will learn the basic pieces of which Concurrency comprises in Cocoa development: Grand Central Dispatch and Operations. https://store.raywenderlich.com/p.. 2020. 6. 14. Process와 Thread의 차이 Process와 Thread의 차이둘은 거의 유사하다.단지 Thread는 컴퓨터의 자원, 예를 들면 메모리와 IO장치들을 Thread끼리 공유하고, Process는 독립적으로 OS로부터 할당받아 사용한다.일반적으로 Process는 여러 Thread를 Invoking(발동) 시키고 관리한다.앱이 실행될 때 한개의 Process가 발생을 하고 그 Process가 어떠한 일을 할 때 컴퓨터의 자원을 최대로 활용하기 위해서는 병렬적으로 일을 하게 만들어야 한다.Thread를 이용해서 컴퓨터의 놀고 있는 자원들을 최대한으로 사용하게 만드는 것이 Multi-Thead Programming의 영역이다. 참고 http://rapapa.net/?p=2704 http://rapapa.net/?p=2704 http://ra.. 2018. 9. 7. 이전 1 다음