gpt4 book ai didi

java - 打印随机字母-LinkedList

转载 作者:行者123 更新时间:2023-12-01 15:37:55 26 4
gpt4 key购买 nike

在此程序中,我创建了一个 LinkedList('lettersLeft'),其中添加 Letters('Letters' 是一个类)。每个字母有 3 个值:1 )这就是那个字母(即“A”),2)它在游戏中出现的次数(即“9”),3)您获得的分数(即“1”)。此外,使用 getNextLetter() 我从包里收到下一封随机信件。我想做一个 for 循环,它会从袋子里打印 2 个随机字母及其值(即“A,9,1 D,4,2”)。这是我的代码(如果你不明白什么问)

信件包:

public class Letters_bag {

public static final Letters A = new Letters('a', 9, 1);
public static final Letters B = new Letters('b', 2, 3);
public static final Letters C = new Letters('c', 2, 3);
public static final Letters D = new Letters('d', 4, 2);
public static final Letters E = new Letters('e', 12, 1);
public static final Letters F = new Letters('f', 2, 4);


public static final Letters[] allLetters = new Letters[] {
Letters_bag.A,
Letters_bag.B,
Letters_bag.C,
Letters_bag.D,
Letters_bag.E,
Letters_bag.F,

};


LinkedList<Letters> lettersLeft = new LinkedList();


public Letters_bag() {
// add all the letters
addLetter(A);
addLetter(B);
addLetter(C);
addLetter(D);
addLetter(E);
addLetter(F);

}

// helper method to add the letters
private void addLetter(Letters sl) {
for (int i=0;i<sl.getCount();i++) {
this.lettersLeft.add(sl);
}
}
/**
*Returns the next random letter from the bag.
*/
Letters getNextLetter() {
// shuffle those letters
Collections.shuffle(lettersLeft);
// return a random letter
return lettersLeft.removeFirst();
}

}

字母:

public class Letters {
private char value;
private int count;
private int points;

public Letters(char value, int count, int points) {
this.value = value;
this.count = count;
this.points = points;
}

public char getValue() {
return value;
}

public int getCount() {
return count;
}


public int getPoints() {
return points;
}

最佳答案

你的意思是像吗?

Collections.shuffle(allLetters);
for(int i=0;i<letterCount;i++)
System.out.println(allLetters[i]);

您的 IDE 可以为您生成一个 toString 方法,您可以简化该方法。 (或者自己写一个)

关于java - 打印随机字母-LinkedList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8580770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com