gpt4 book ai didi

c++ - 无法打印指向 0 的 char*

转载 作者:太空宇宙 更新时间:2023-11-04 15:06:19 26 4
gpt4 key购买 nike

此处 comment2 打印完美。哪里没有打印评论和程序在执行该语句后立即结束。谁能提供解决方案?

#include <iostream>
int main()
{
const char * comment = 0;
const char * comment2 = "hello this is not empty";
std::cout << std::endl;
std::cout << comment2 << std::endl;
std::cout << "printing 0 const char *" << std::endl;
std::cout << comment << std::endl;
std::cout << "SUCCESSFUL" << std::endl;
}

最佳答案

取消引用空指针是未定义的行为,这使得 comment 成为空指针:

const char * comment = 0;

如果你想将空字符串更改为:

const char* comment = "";

或者使用std::string:

std::string comment;

关于c++ - 无法打印指向 0 的 char*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14253299/

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