那是确切的代码然后我有一个案例 0 的开关:和案例 1:似乎案例 1:每次都会出现,我希望有 50/50 的机会出现 0 或 1 这是正确的方法还是我应该使用 1.5 或者这到底是如何工作的?
talka = (int)(Math.random() * 1);
switch(talka)
{
case 0:
{
talk.setAnimationListener(this);
talk.playtimes(1,24);
startService(new Intent(this, love1.class));
break;
}
case 1:
{
talk.setAnimationListener(this);
talk.playtimes(1,12);
startService(new Intent(this, love2.class));
break;
}
}