所以我只是想打印一個隨機單詞,那它調用一個方法沒有得到結果
Dictionary secret = new Dictionary();
secret.getRandomWord();
System.out.println(secret);
^一切是我的主要程序。 ,什麼是給我的,我必須使用
public String getRandomWord(){
Random generator = new Random();
String temp = new String();
temp += dictionary[generator.nextInt(NUMBER_OF_WORDS)];
return temp;
上面的代碼是給了我,我有一起工作的一類。當我運行我的代碼時,我得到[email protected]
,它應該是一個隨機單詞。有任何想法嗎?
新的字符串是沒有必要的。 – Jayan