欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

C语言动态内存管理介绍

时间:2022-08-30 09:29:02|栏目:C代码|点击:

前言:

简单记录一下,内存管理函数

为什么使用动态内存呢?
简单理解就是可以最大限度调用内存
用多少生成多少,不用时就释放而静止内存不能释放
动态可避免运行大程序导致内存溢出

C 语言为内存的分配和管理提供了几个函数:

头文件:<stdlib.h>

注意:void * 类型表示未确定类型的指针 

1.malloc() 用法

 分配一块大小为 num 的内存空间

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
int main() {
    char name[12];
    char *test;
 
    strcpy(name, "KiKiNiNi");
 
    // 动态分配内存
    test = (char *) malloc(26 * sizeof(char));
 
    // (void *) malloc(int num) -> num = 26 * sizeof(char)
    // void * 表示 未确定类型的指针
    // 分配了一块内存空间 大小为 num 存放值是未知的
 
    if (test == NULL) {
        fprintf(stderr, "Error - unable to allocate required memory\n");
    } else {
        strcpy(test, "Maybe just like that!");
    }
 
    printf("Name = %s\n", name);
    printf("Test: %s\n", test);
 
    return 0;
}
 
// 运行结果
// Name = KiKiNiNi
// Test: Maybe just like that!

2.calloc() 用法

 分配 num 个长度为 size 的连续空间

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
int main() {
    char name[12];
    char *test;
 
    strcpy(name, "KiKiNiNi");
 
    // 动态分配内存
    test = (void *) calloc(26, sizeof(char));
 
    // (void *) calloc(int num, int size) -> num = 26 / size = sizeof(char)
    // void * 表示 未确定类型的指针
    // 分配了 num 个 大小为 size 的连续空间 存放值初始化为 0
 
    if (test == NULL) {
        fprintf(stderr, "Error - unable to allocate required memory\n");
    } else {
        strcpy(test, "Maybe just like that!");
    }
 
    printf("Name = %s\n", name);
    printf("Test: %s\n", test);
 
    return 0;
}
 
// 运行结果
// Name = KiKiNiNi
// Test: Maybe just like that!

3.realloc() 与 free() 用法

重新调整内存的大小和释放内存

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
int main() {
    char name[12];
    char *test;
 
    strcpy(name, "KiKiNiNi");
 
    // 动态分配内存
    test = (char *) malloc(26 * sizeof(char));
 
    // (void *) malloc(int num) -> num = 26 * sizeof(char)
    // void * 表示 未确定类型的指针
    // 分配了一块内存空间 大小为 num 存放值是未知的
 
    if (test == NULL) {
        fprintf(stderr, "Error - unable to allocate required memory\n");
    } else {
        strcpy(test, "Maybe just like that!");
    }
 
    /* 假设您想要存储更大的描述信息 */
    test = (char *) realloc(test, 100 * sizeof(char));
    if (test == NULL) {
        fprintf(stderr, "Error - unable to allocate required memory\n");
    } else {
        strcat(test, " It's a habit to love her.");
    }
 
    printf("Name = %s\n", name);
    printf("Test: %s\n", test);
 
    // 释放 test 内存空间
    free(test);
 
    return 0;
}
 
// 运行结果
// Name = KiKiNiNi
// Test: Maybe just like that! It's a habit to love her.

上一篇:C/C++回调函数介绍

栏    目:C代码

下一篇:C语言中堆空间的生成与释放详解

本文标题:C语言动态内存管理介绍

本文地址:http://www.codeinn.net/misctech/212254.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有