본문 바로가기

abstract away 의 뜻 #Def abstract away 사전적 의미 : consider apart from a particular case or instance 즉, 특정 사건, 특정 케이스에서는 상관하지 않겠다는 뜻이다. 다만, 컴퓨터공학 분야에서 사용되는것은 좀 다른것 같다. it abstracts away x. means that it hides x by using a layer of "abstraction", by abstracting you hide all the numereous facettes of the real object, making it simple to see/use/explain. 즉, x를 abstaction 시켜서 누군가에게 사용하지 못하게 하는것이다.Software Architecture는 고의.. 더보기
#OS 정리 - Computer network / Computer Communication 출처 : http://en.wikipedia.org/wiki Computer network A computer network or data network is a telecommunications network that allows computers to exchange data.In computer networks, networked computing devices pass data to each otheralong data connections.The connections (network links) between nodes are established using either cable media or wireless media. The best-known computer network is the .. 더보기
Memory Management #3 Memory 배치 알고리즘(Best-fit , First-fit, Next-fit) 트럭에 짐을 넣는 알고리즘에사용되는 Best-fit , First-fit , Next-fit 이 OS에서도 사용 된다! 프로세스가 메인메모리에 적재되기전"나의 용량은 99M입니다. 제가 들어갈 수 있을 만큼의 용량을 저에게 주세요."라고 말할 것이다. 여기서 중요한것 첫째! 제가 들어갈 수 있을 만큼의 용량을 저에게 주세요.물론 프로세스보다 크거나 같은 주기억장치의 가용(free) 블록중 하나를 줄것이다. 그리고 두번째!운영체제는 어떻게,어떠한 방법으로 찾아서 해당 메모리를 프로세스에게 할당해줄것인가?바로 Best-fit , First-fit , Next-fit 방법을 사용하여 줄것이다. 위의 그림에서 보자면, 16M의 프로세스가 메인 메모리에 load되려고 한다. Best - fit : 처음부터 끝까지.. 더보기