我的工作在我的COM的類一個任務,需要我創造的財富遊戲的車輪。我目前正在研究getDisplayedPhrase
方法,我將解釋。因此,對於這個節目,我有例如
"this is a question, thanks for helping!"
隨機句話我想這句話改爲
"**** ** * ********, ****** *** *******!"
這句話應該怎麼看起來像他們想它。正如你所看到的,我想只改變字母,所以我創建了一個代替某些字符的字符串
private static final String alpha ="abcdefghijklmnopqrstuvwxyz"
,以避免任何標點符號。 這是我到目前爲止有:
public String getDisplayedPhrase() {
for (int i = 0; i<secretPhrase.length(); i++){
I don't know what to put here and what method to use???
I'm thinking of using charAt() or indexOf()
}
return displayedPhrase;
}
而不是說我不知道,拿一個飛躍,並嘗試使用的charAt()和的indexOf(),然後會被卡住。 – Arham