Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Libtiff 是一个 C 库,但我想将它与 Qt Creator 中的 C++ 项目一起使用。有谁知道如何做到这一点?当我尝试使用 C 库时出现编译时错误,所以我不确定该怎么做。
我得到的编译时错误是:
c:\libtiff\libtiff\tiff.h:69:错误:C4430:缺少类型说明符 - 假定为 int。注意:C++ 不支持默认整数
对于该行: typedef TIFF_INT8_T int8;
加上一堆更相似的错误。有人请帮忙。
您需要将包含语句包装在 extern C 块上——
extern "C"{ #include "tiff.h" }
这告诉编译器将这些文件视为 C,而不是 C++,因此您不应收到严格的 C++ 错误。