gpt4 book ai didi

c++ - 我在玩VS2017的时候发现了一些东西

转载 作者:搜寻专家 更新时间:2023-10-31 00:52:21 27 4
gpt4 key购买 nike

当我尝试学习 throw catch 时,我刚刚编译了我的代码,我发现这个输出是什么意思?

    #include "stdafx.h"
#include <iostream>

using namespace std;

void MightGoWrong() {
bool error = true;

if (error) {
throw 8;
}
// -------------------------
int main()
{
cout << MightGoWrong;
return 0;
}

输出是:012211A4 这是什么意思?

Output

Code

最佳答案

您没有调用您的函数。

cout << MightGoWrong;只是打印函数的地址。要调用它你应该做 cout << MightGoWrong(); .

关于c++ - 我在玩VS2017的时候发现了一些东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52019906/

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