C++编程中错误及告诫信息(2) extra qualification
Explanation
实例:
… class Hello { … void Hello::hello(); … }; …
提示(g++):
Hello.h:17: error: extra qualification ‘Hello::’ on member ‘hello’
这凡是是拷贝代码引起的,应改为:
… class Hello { … void hello(); … }; …
Reference
http://hi.baidu.com/zjugator/blog/item/77bb6cec02bee22163d09f7d.html
–
柳 大·Poechant:Blog.CSDN.net/Poechant