还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

编译错误 error: ISO C++ forbids declaration of ‘xxx’ with no type [-fpermissive]

来源:清泛原创     2021-06-30 21:18:38    人气:     我有话说( 0 人参与)

比较可能的情况1:函数没有写返回类型,加上返回类型后编译成功。 ifndef ttTree_h define ttTree_hclass ttTree {public: ttTree(void); int ttTreeInsert(int value

比较可能的情况1:函数没有写返回类型,加上返回类型后编译成功。
#ifndef ttTree_h
#define ttTree_h

class ttTree 
{
public:
  ttTree(void);
  int ttTreeInsert(int value);
};

#endif

ttTree::ttTreeInsert(int value) {}  //报错 -> 
int ttTree::ttTreeInsert(int value) {}  //加上返回类型解决

可能的情况2:两个头文件相互include,一般可以采用#ifndef或前置声明解决该问题。

可能的情况3
error: ISO C++ forbids declaration of ‘typeof’ with no type [-fpermissive]
typeof关键字是GNU C拓展,编译选项需要加 -std=gnu99 (或-std=gnu++11 对应C++11标准)才能被识别。类似于c++11的decltype关键字。

编译错误

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: