#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main(){
char str[31];
cout << "--==--" << sizeof(str) << endl;
// 给了
memset(str, 0, sizeof(str));
for (size_t i = 0; i < 31; i++)
{
cout << "qweqwe:" << i << " dd:" << (str[i]==0) <<" ff:"<< str[i]<< endl;
}
cout << "-----------===========--" << str << endl;
return 1;
为什么 == 0 是true,而打印出来没东西啊,是个初始化的问题,我不是
memset(str, 0, sizeof(str)); 把str的所有位置都置成0了么。文章来源地址https://www.toymoban.com/news/detail-679723.html
文章来源:https://www.toymoban.com/news/detail-679723.html
到了这里,关于[C++]学习中的一个问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!