gpt4 book ai didi

c++ - 将 char[] 转换为 char*

转载 作者:太空宇宙 更新时间:2023-11-04 00:56:08 25 4
gpt4 key购买 nike

可能这是个棘手的问题,但请帮忙

void Temp1::caller()
{
char *cc=Called();
printf("sdfasfasfas");
printf("%s",cc);
}

char *Temp1::Called()
{
char a[6]="Hello";
return &a;
}

这里如何使用 printf("%s",cc); 打印 Hello

最佳答案

首先,这个函数:

char *Temp1::Called()
{
char a[6]="Hello";
return &a;
}

正在返回一个局部变量,一旦函数结束,该变量将不复存在 - 更改为:

const char *Temp1::Called()
{
return "Hello";
}

然后,使用 printf() 打印字符串的方法是使用“%s”:

void Temp1::caller()
{
const char *cc=Called();
printf("sdfasfasfas");
printf("%s",cc);
}

关于c++ - 将 char[] 转换为 char*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2666300/

25 4 0
文章推荐: javascript - 在 Javascript 中扩展对象数组
文章推荐: css - 在 Bootstrap 网格中创建单边边框而不更改
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com