C语言中存储多个字符串的两种方式

Posted 0xWitch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言中存储多个字符串的两种方式相关的知识,希望对你有一定的参考价值。

C语言中存储多个字符串的两种方式

方式一    二维字符串数组

声明:

char name[4][10] = { "Justinian", "Momo", "Becky", "Bush" };

在内存中的存储:

J u s t i n i a n \\0
M o m o \\0 \\0 \\0 \\0 \\0 \\0
B e c k y \\0 \\0 \\0 \\0 \\0
B u s h \\0 \\0 \\0 \\0 \\0 \\0

 

 

 

 

这种方式会造成内存空间的浪费

方式二    一维指针数组

声明:

char *name[4] = { "Justinian", "Momo", "Becky", "Bush" };

在内存中的存储:

name[0] 

J u s t i n i a n \\0

 

name[1]

M o m o \\0

 

name[2]

B e c k y \\0

 

name[3]

B u s h \\0

 

 

可见此种方式能够避免不必要的内存浪费

验证结果:

#include <stdio.h>

int main()
{
    char name1[4][10] = { "Justinian", "Momo", "Becky", "Bush" };
    char *name2[4] = { "Justinian", "Momo", "Becky", "Bush" };

    printf("--------二维字符串数组的存储方式-------\\n");
    for(int i = 0; i < 4; i++)
    {
        printf("name[%d] = \\"%s\\"\\t", i, name1[i]);
        printf("所占地址:%p\\n", name1[i]);
    }

    printf("--------一维指针数组的存储方式--------\\n");
    for(int i = 0; i < 4; i++)
    {
        printf("name[%d] = \\"%s\\"\\t", i, name2[i]);
        printf("所占地址:%p\\n", name2[i]);
    }
}

运行结果:

 

差距显而易见

以上是关于C语言中存储多个字符串的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

栈的两种实现方式(C语言)

栈的两种实现方式(C语言)

栈的两种实现方式(C语言)

C语言 判断字符是不是是一个数字的两种方法

redis的两种存储方式string和byte对比

使用mybatis的两种方式