1
我有一個任務要做,而且我的老師向我提供了一部分代碼,可以幫助完成所說的任務。但我不確定其中的一部分;需要一些關於代碼的一部分的提示
String utenRepetisjon(String tekst){
String resultat = "";
for (int i = 0; i < tekst.length(); i++){
if (!tekst.charAt(i), resultat){ //Here I need help, if someone could be an angel and explain to me what this line does: !tekst.charAt(i), resultat). I know that it it something like: if the char at spot i in the string is not present, then something, but what's up with the comma?
resultat += tekst.charAt(i);
}
}
return resultat;
}
這不會編譯。 – qqilihq
這可能不會編譯 –
這將無法編譯。必須是錯字。 –