gpt4 book ai didi

c++ - C++ 中 char 数组末尾的空终止符

转载 作者:太空狗 更新时间:2023-10-29 19:58:24 28 4
gpt4 key购买 nike

为什么下面的代码中没有必要在名为temp的字符串末尾存储空字符

char source[50] = "hello world";
char temp[50] = "anything";
int i = 0;
int j = 0;

while (source[i] != '\0')
{
temp[j] = source[i];
i = i + 1;
j = j + 1;
}
cout << temp; // hello world

而在下面的情况下就变得有必要了

char source[50] = "hello world";
char temp[50];
int i = 0;
int j = 0;
while (source[i] != '\0')
{
temp[j] = source[i];
i = i + 1;
j = j + 1;
}
cout << temp; // will give garbage after hello world
// in order to correct this we need to put temp[j] = '\0' after the loop

最佳答案

区别在于temp的定义方式。

第一种情况

char temp[50] = "anything";

temp 已初始化。未从字符串文字中分配字符的所有元素都初始化为零。

第二种情况

char temp[50];

temp 未初始化,因此其元素包含任意值。

还有第三种情况,temp 有静态存储时长。在这种情况下,如果它被定义为

char temp[50];

它的所有元素都初始化为零。

例如

#include <iostream>

char temp[50];

int main()
{
char source[50] = "hello world";
int i = 0;
int j = 0;
while (source[i] != '\0')
{
temp[j] = source[i];
i = i + 1;
j = j + 1;
}
std::cout << temp;
}

还要考虑到使用标准 C 函数 strcpy 将源代码复制到临时文件中会更加安全和有效。例如

#include <cstring>

//...

std::strcpy( temp, source );

关于c++ - C++ 中 char 数组末尾的空终止符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21798475/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com