如何在Java中存储字符串的常量数组
我从应用程序中的一组特定字符串中随机选择。我将这些数据直接存储在代码中。据我所知,你不能宣布.因此,我认为枚举会很有用,它与一个单词名称一起工作:public static final String[] = {"aa", "bb"}
public enum NAMES {
Mike, Peter, Tom, Andy
}
但是我如何存储这样的句子呢?此处的枚举失败:
public enum SECRETS {
"George Tupou V, the King of Tonga, dies in Hong Kong at the age of 63.",
"Joachim Gauck is elected President of Germany.",
"Lindsey Vonn and Marcel Hirscher win the Alpine Skiing World Cup.";
}
我还应该使用什么?还是我错误地使用了枚举?