gpt4 book ai didi

java - 如何从特定字母列表中获取随机字母?

转载 作者:行者123 更新时间:2023-12-03 00:57:31 25 4
gpt4 key购买 nike

我已经开始编写一些 JAVA 代码,现在我想从给定的字母列表中获取一个随机字母,那么我应该使用什么来实现。

最佳答案

我会从字面上理解你的问题:

Random r = new Random(); // Keep this stored as a field
List<Character> l = ...; // initialize this somewhere
char c = l.get(r.nextInt(l.size()));

根据几个因素(字母是否连续,是否动态调整列表大小),您可能可以使用数组,也可能不需要集合。请参阅Random类。

示例:

Random r = new Random(); // Keep this stored as a field
List<Character> l = Arrays.asList('A', 'F', 'O', 'W', 'M', 'I', 'C', 'E');
char c = l.get(r.nextInt(l.size()));

关于java - 如何从特定字母列表中获取随机字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2482078/

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