无法在Netbeans IDE 8.2中解析名称标识符

时间:2019-07-13 15:38:11

标签: c++ netbeans netbeans-8.2

它显示了构建成功,甚至显示了输出,但是它为我提供了一个红色标记,其中指出以下代码的“无法解析标识符名称”:

#include<iostream>
#include <cstdio>
#include<typeinfo>
using namespace std;

int main() {
    auto num = 10;
    cout<<typeid(num).name(); //Red Flag out here (a bulb with red ! mark) and name() is underlined with red color.
    return 0;
}

我得到的结果是: 我

0 个答案:

没有答案