Android 中的 CCSprites 类强制转换异常?

发布于 2024-12-08 03:04:49 字数 367 浏览 1 评论 0原文

我在java中继承CCSprites时遇到一个问题,我在这里发布一些代码,

public class Block extends CCSprite
  {
static Block temp=null;
     ...
     ...
   static Block newBlock(tetrominoTypes blockType)
      {
        temp = (Block) Block.sprite(filename); // class cast exception here

   }
return temp;
 }

...... 运行时发生类转换

期望,我该如何解决它。如果有人知道,请帮助我。

I have one problem in inheriting CCSprites in java, i post some of codes here,

public class Block extends CCSprite
  {
static Block temp=null;
     ...
     ...
   static Block newBlock(tetrominoTypes blockType)
      {
        temp = (Block) Block.sprite(filename); // class cast exception here

   }
return temp;
 }

......
}

Class cast expection occur on runtime , how can i resolve it.If any one knows means help me out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虚拟世界 2024-12-15 03:04:49

sprite 似乎是母类的静态函数。

也许尝试:

temp = (Block) CCSprite.sprite(filename);

sprite seems to be a static function of the mother class.

Maybe try :

temp = (Block) CCSprite.sprite(filename);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文