我安装了Netbeans 7.3昨天要我的更新,我正在运行Ubuntu 12.04。现在,当我创建一个新项目时,netbeans突出显示了我的代码中的许多错误,但是当我构建时,它编译并运行时没有错误。
这是一个简单的例子,我在评论中添加了netbeans声称代码所包含的错误。
的main.cpp
#include <cstdlib>
#include <string>
#include <stdio.h>
#include "hello.h"
using namespace std;
int main()
{
string s="hello";
printf("%i\n",s.length()); //Unable to resolve identifier length
hello h(0,0,0); //unable to resolve identifier hello
printf("%i\n",h.z); //unable to resolve identifier z
return 0;
}
hello.h
#ifndef HELLO_H
#define HELLO_H
class hello
{
public: //unexpected token: :
int x;
int y;
int z;
hello(int px,int py,int pz);
}; //unexpected token: }
#endif
HELLO.CPP
#include "hello.h"
hello::hello(int px, int py, int pz) //method hello does not have declaration
{
x=px;
y=py;
z=pz;
}
我尝试编译,清理和重建,重新启动netbeans,并在新项目中进行此操作,但没有任何作用。有什么想法吗?
提前感谢您的帮助:)
答案 0 :(得分:3)
我曾经遇到过同样的问题。我需要删除{userdir}/var/cache/index
我发现错误报告来自这里:
答案 1 :(得分:1)
我重新安装了netbeans,它修复了大部分问题,其余部分在我花了一段时间从项目中删除文件然后再添加它们时就消失了。检查文件的属性并确保它们设置为使用c ++编译而不是c也有帮助。希望这个问题不会再次困扰我了。