面向对象编程中遇到的问题1

   invalid use of incomplete type 'struct RTPPacket'

 jni/jrtp/rtpsources.h:60:7: error: forward declaration of 'struct RTPPacket'


类似上面的错误,查看rtpsources.h中第60行,是class RTPPacket;在程序中出现第一行一样的错误是因为没有添加头文件, 比如解决这个错误 只要添加 #include "rtppacket.h" 这个头文件是类RTPPacket的头文件。

你可能感兴趣的:(forward,declaration)