码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx 3.x(获得父类的node型指针调用父类函数this->getParent())

时间:2016-11-29 06:11:02      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:plain   .net   img   send   分享   htm   bar   div   title   

  1. void CenterLayer::zhanzheng(CCObject* pSender){  
  2.     ((GameScene*)this->getParent())->showLayer(GameScene::UI_SelectLayer);  
  3. }  

在这里 this->getParent() 会获得一个父类的一个node型指针,然后转换为父类类型,可以使用这个指针调用父类函数。

 

  1. _centerLayer=CenterLayer::create();  
  2. this->addChild(_centerLayer);  

 

CenterLayer是一个层,添加在GameScene上面的场景上面的,

1:这里满的关键字要用this去掉使用getParten()函数,如果用子类对象去调用会出现错误。

2:强制类型转换(GameScene*)将node*类型的指针转换为GameScene*的类型

cocos2dx 3.x(获得父类的node型指针调用父类函数this->getParent())

标签:plain   .net   img   send   分享   htm   bar   div   title   

原文地址:http://www.cnblogs.com/luorende/p/6092819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!