Xcode include 顺序有何玄机?


   
  #include "cocos2d.h"
  
#include "cocos-ext.h"

这样写的话, 按住cmd键, 点击cocos-ext.h, Xcode无法识别该文件. 尽管不影响编译.

颠倒下, 这一切正常, 请问include的顺序也有玄机么?

   
  #include "cocos-ext.h"
  
#include "cocos2d.h"

cocos2d-x C++

百合吧G 10 years, 4 months ago

我觉得这跟C++顺序执行有关系。在obj-c环境下应该是不一样的结果

xixing晴 answered 10 years, 4 months ago

Your Answer