有关返回值为指针的函数的问题,求帮忙
#include <iostream>#include <string>
using namespace std;
char *catstr(char* str1, char *str2){
char *temp = str1;
while(*str1 != '\0')str1++;
while(*str2 != '\0'){
*str1 = *str2;
str1 ++;
str2++;
}
*str1 = '\0';
return temp;
}
int main ()
{
char s1 = "Beijing";
char s2 = "2008";
char *result = nullptr;
result = catstr(s1, s2);
cout << result << endl;
return 0;
}
为什么输出的result结果是 Beijing2008, 而不是第一个字符串的首地址呢?我的理解应该是*result输出的才应该是{:10_266:} 在c中 printf使用 "/p"来输出地址。
在c++中直接使用"&"来输出地址 cout << &result <<endl; , 不加输出值。 在这段代码中,result 的值确实被设置为 catstr 函数的返回值,也就是 s1 和 s2 连接在一起的字符串的首地址。然而,cout << result << endl 语句输出的是整个连接后的字符串 "Beijing2008",而不是其首地址。
这是因为 cout 对于 char * 类型的指针,会将其视为指向以零结尾的字符串,并输出该字符串的内容,而不是指针本身的值(即指针所指向的地址)。在这个例子中,result 指向的确实是一个以零结尾的字符串,因此 cout << result 会输出该字符串的内容,也就是 "Beijing2008"。如果想输出 result 的地址,可以使用 cout << (void *)result,强制将指针转换为 void * 类型,并输出其地址。
页:
[1]