gpt4 book ai didi

c++ - 为什么没有输出显示

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

为什么这段代码没有显示任何输出:相反,如果我们使用

cout << &s1.f 

cout << &s1.i

提供正确的输出。

# include <iostream>
using namespace std;

struct s
{
char c;
int i;
float f;

}s1;

int main()
{
cout << &s1.c;
}

最佳答案

operator<< 过载这需要 char*并将其显示为以 null 结尾的字符串。如果要显示指针地址,将指针强制转换为void* .

关于c++ - 为什么没有输出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10817278/

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