我在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;
}
...... }
在运行时发生类强制转换,如何解决它。如果有人知道意味着帮助我。
答案 0 :(得分:0)
sprite
似乎是母班的静态功能。
也许试试:
temp = (Block) CCSprite.sprite(filename);