数据结构和内存与缓存的关系

HarderHeng Lv5

一、常见的内存相关函数

C语言库函数,来自stdlib

1、malloc

1
void *malloc(size_t size);

分配指定大小的内存空间,并且返回一个指向该内存起点的指针。

2、calloc

1
void *calloc(size_t num, size_t size);

分配指定内存大小的空间,前一个参数是内存的个数,后一个是每个单元的大小。callocmalloc区别在于calloc会将所有的内存单元初始化为0

  • Title: 数据结构和内存与缓存的关系
  • Author: HarderHeng
  • Created at : 2024-02-12 08:32:43
  • Updated at : 2024-02-26 14:36:30
  • Link: https://harderheng.life/2024/02/12/数据结构和内存与缓存的关系/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
数据结构和内存与缓存的关系