ブックマーク / samwho.dev (1)

  • Memory Allocation

    One thing that all programs on your computer have in common is a need for memory. Programs need to be loaded from your hard drive into memory before they can be run. While running, the majority of what programs do is load values from memory, do some computation on them, and then store the result back in memory. In this post I'm going to introduce you to the basics of memory allocation. Allocators

    Memory Allocation
    p-yaman
    p-yaman 2023/05/24
  • 1