2016-02-17 142 views
-1

我的代碼有什麼問題?檢索字符串長度時出錯

import java.util.Scanner; 

class Pali 
{ 

    public static void main(String[] args) 
    { 

     Scanner in = new Scanner(System.in); 
     System.out.println("\nInserisci una stringa: "); 
     String p = in.next(); 

     int n = p.lenght(); 

    }  
} 

我在p變量中出現「找不到符號」錯誤。爲什麼?非常感謝(對不起,如果我做錯了,這是我的第一篇文章)。

回答

2

這是一個錯字:

int n = p.lenght(); 

應該p.length();

+0

D'oh,非常感謝。也許是時候收起書來衝上牀了 –

0

用途:用於int n = p.length();代替p.lenght();

0

這是一個錯字。

int n = p.lenght(); 

更正:int n = p.length();

它發生在我們最好的。