코딩Coding/Rust❤️메모리Memory관리_기초상식
-
Stack overflow vs Heap overflow 개념 이해코딩Coding/Rust❤️메모리Memory관리_기초상식 2022. 2. 3. 13:46
https://m.blog.naver.com/dbstnsgh2/221967559511 Stack, Heap, Data 영역 우리가 프로그램을 실행시키게 되면 운영체제는 우리가 실행시킨 프로그램을 위해 메모리 공간을 RAM 안... blog.naver.com Stack and Heap 개념과 위치 https://stackoverflow.com/questions/79923/what-and-where-are-the-stack-and-heap/79936#79936 What and where are the stack and heap? Programming language books explain that value types are created on the stack, and reference types are..
-
Rust용어)스택(stack)과 힙(heap) 개념 이해하기-소유권이해하기에 필수코딩Coding/Rust❤️메모리Memory관리_기초상식 2021. 5. 8. 01:11
스택에 푸시하기 (pushing on the stack) 스택을 팝하기 (popping off the stack) 힙 공간 할당하기(allocating on the heap)라고 부르고, 종종 그냥 "할당(allocating)"으로 줄여 부릅니다 자세한 내용은 밑에 링크 클릭!! rinthel.github.io/rust-lang-book-ko/ch04-01-what-is-ownership.html 소유권이 뭔가요? - The Rust Programming Language 러스트의 핵심 기능은 바로 소유권입니다. 이 기능은 직관적으로 설명할 수 있지만, 언어의 나머지 부분에 깊은 영향을 끼칩니다. 모든 프로그램은 실행하는 동안 컴퓨터의 메모리를 사용하는 rinthel.github.io stack과 heap..
-
[컴퓨터 기초]메모리 구조(Memory Structure)_Data Structure(Code, Data, Stack, Heap)코딩Coding/Rust❤️메모리Memory관리_기초상식 2020. 9. 24. 00:24
jinshine.github.io/2018/05/17/%EC%BB%B4%ED%93%A8%ED%84%B0%20%EA%B8%B0%EC%B4%88/%EB%A9%94%EB%AA%A8%EB%A6%AC%EA%B5%AC%EC%A1%B0/ [컴퓨터 기초] 메모리구조(Memory Structure) - jinShine 프로그램 실행 순서 메모리 영역에 관해 이야기하기 전에 어떤식으로 프러그램이 실행되는지 과정을 살펴 보겠습니다. 프로그램의 정보를 읽어 메모리에 로드되는 과정을 보실 수 있으실텐데, jinshine.github.io