我有一个 cShape 类来处理图形图像。它在其构造函数中占据起始位置。我希望起始位置是随机的,所以我有以下代码
cBalloon(Context InContext, int w, int h) {
// set up random postion
Random randomGenerator = new Random();
int sx=randomGenerator.nextInt(w);
int sy=randomGenerator.nextInt(h);
super( InContext, sx, sy, 0,0, 50,50, "balloon", 50,50,0);
}
我收到一条错误消息“ Constructor class must be first in a constructor
”有没有办法做到这一点?