qt 编译时提示error: multiple definition of

今天在用QT(5.4.1) 编译程序时,提示error: multiple definition 错误,以下红色字体为错误提示。

D:\Wind\PLT-Projects\BCS\tmp\moc_Cntrlane.cpp:156: error: multiple definition of `CntrLane::InputSignalChanged(bool*)'

D:\Wind\PLT-Projects\BCS\tmp\moc_Cntrlane.cpp:156: first defined here


在编译时,总提示以上错误,仔细检查类中定义的方法及变量,均未发现问题,从提示看,像是什么东西重复定义了。后来仔细检查.pro文件以下两个部分,发现有.cpp及.h文件重复定义

HEADERS  +=  
SOURCES +=
去掉重复部分,编译通过。

这个链接也提供了解决方案。

你可能感兴趣的:(qt 编译时提示error: multiple definition of)