lunchScreen / Interview_Questions

기술면접을 준비하는 버디들
73 stars 10 forks source link

메모리 구조의 순서가 어떻게 되는가? CPU에서 가까운 순으로 말해보시오. #149

Open sustainable-git opened 2 years ago

sustainable-git commented 2 years ago
inuinseoul commented 2 years ago

image

내부 기억장치(internal memory)

외부 기억장치(external memory)

캐쉬 기억장치(cache memory)

디스크 캐쉬(disk cache)

tmfrlrkvlek commented 2 years ago

레지스터, 캐시메모리, 메인메모리, 보조기억장치, 외부기억장치 순으로 이루어집니다.

+) 메모리 구조는 Code, Data, Heap, Stack으로 Code에는 소스코드, Data에는 전역 변수, Heap에는 참조 타입 값, Stack에는 함수의 지역변수, 반환값 등이 저장됩니다.