我制作了一个我需要所有州的程序,必须选择一个随机状态来要求用户提供资金。如何制作列表来存储所有这些状态,然后选择随机状态?
答案 0 :(得分:4)
将字符串添加到列表
List<String> list = new ArrayList<>();
list.add("one");
list.add("two");
list.add("three");
使用
生成介于0和列表大小之间的随机数int index = new Random().nextInt(list.size()) ;
获取你的字符串
String text = list.get(index);