C标准库 内存分配以及释放函数汇总___throw __attribute_warn_unused_result__ __attribu

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

$ ls /usr/include/stdlib.h

二、函数声明

/\* Allocate SIZE bytes of memory. \*/
extern void \*malloc (size_t __size) __THROW __attribute_malloc__
     __attribute_alloc_size__ ((1)) __wur;
/\* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. \*/
extern void \*calloc (size_t __nmemb, size_t __size)
     __THROW __attribute_malloc__ __attribute_alloc_size__ ((1, 2)) __wur;

/\* Re-allocate the previously allocated block
 in PTR, making the new block SIZE bytes long. \*/
/\* \_\_attribute\_malloc\_\_ is not used, because if realloc returns
 the same pointer that was passed to it, aliasing needs to be allowed
 between objects pointed by the old and new pointers. \*/
extern void \*realloc (void \*__ptr, size_t __size)
     __THROW __attribute_warn_unused_result__ __attribute_alloc_size__ ((2));

/\* Free a block allocated by `malloc', `realloc' or `calloc'. \*/
extern void free (void \*__ptr) __THROW;

三、函数作用

形参的作用:

  • __size:要被分配的元素大小(单位是字节)
  • __nmemb:要被分配的元素个数
  • __ptr:指向已分配内存块的指针

函数的作用:

函数参数返回值作用
malloc__sizevoid *分配__size字节大小的内存块,并返回指向该内存块的指针
calloc__nmemb, __sizevoid分配__nmemb__size字节大小的内存块,并返回指向该内存块的指针
realloc__ptr, __sizelong int__ptr内存块重新分配为__size字节大小,并返回指向新内存块的指针
free__ptrvoid__ptr内存块进行释放

注意点:

  • malloccalloc 函数之间的不同点是,malloc 函数不会设置内存块为零,而 calloc 函数会设置分配的内存块为零
  • realloc 函数的__ptr参数内存块之前是通过调用 malloccallocrealloc 进行分配内存的。如果为空指针,则会分配一个新的内存块,且函数返回一个指向它的指针
  • realloc 函数的__size参数为0,则相当与free函数,并返回空指针
  • 没有分配的内存块不能使用free函数,会造成内存泄露

四、使用

  • 源代码:
#include <stdio.h>
#include <stdlib.h>

struct person {
        int age;
        int height;
        int weight;
};

int main(int argc, char \*argv[])
{
        struct person \*person;

        person = (struct person \*)malloc(sizeof(struct person));
        person->age = 20;
        person->height = 175;
        person->weight = 130;
        printf("persons.age: %d\n", person->age);
        printf("persons.height: %d\n", person->height);
        printf("persons.weight: %d\n", person->weight);
        free(person);



![img](https://img-blog.csdnimg.cn/img_convert/c4fa5442a5985ae8778b7a5780093f27.png)
![img](https://img-blog.csdnimg.cn/img_convert/7da51b236e61c99158011592fac71134.png)

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[如果你需要这些资料,可以戳这里获取](https://bbs.csdn.net/topics/618668825)**

分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[如果你需要这些资料,可以戳这里获取](https://bbs.csdn.net/topics/618668825)**

  • 3
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值