我有3个类:tDate,tPlayer和tGame。 tPlayer:
private String name;
private int my_lucky_number;
private int total_score;
我在tPlayer中写了这个方法:
public void playOneRound()
{
int x = 0;
int n =(int)(Math.random()*6)+1;
if (my_lucky_number > n*5)
{
x = my_lucky_number - n*5;
total_score = total_score + x;
}
if (my_lucky_number < n*5)
x = n*5-my_lucky_number;
total_score = total_score + x;
}
它不会让我在我的主要课程中使用它。
total1 = pp1.playOneRound();
它说我需要将playOneRound更改为int方法。 它可以无效吗?或者我做错了什么?