淘先锋技术网

首页 1 2 3 4 5 6 7

C++ 有返回值的函数,忘记写return,编译时没有报错,运行时函数会返回一个不确定的值
这个还是需要特别注意的。

例如以下代码:
#include “stdafx.h”
#include “iostream”
using namespace std;

int fun()
{
int nRet = 0;
if (nRet != 0)
{
return 788;
}
}

int main()
{
int nRet = fun();
cout << nRet << endl;
system(“pause”);
return 0;
}

运行时输出结果如下所示:
在这里插入图片描述