2013-10-16 86 views
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; 

} 
+4

這不會編譯。 – qqilihq

+0

這可能不會編譯 –

+2

這將無法編譯。必須是錯字。 –

回答

0

你是對的混淆。看起來有人忘記了他們正在使用的語言,並試圖插入一些C++ syntax。這不會在Java中編譯。

可能是打算將tekst.charAt(i)與某些東西進行比較,如果該比較返回錯誤,則繼續。但是,該逗號和浮動標識符只是不好的語法,簡單的不編譯。

相關問題