String[] quarters = new String[100] ;
quarters[] = information(fileCheck) ;
public static string information(String a)
{
Scanner inFile = new Scanner (new File(a)) ; // opens connection with file
while (inFile.hasNext()) // loops while more lines in file
{
String line = inFile.nextLine() ; // brings in next line to be broken up
String[] tokens = line.split(", ") ; //stores lines into array tokens
}
inFile.close() ; // close connection to file
return tokens[] ;
} // end information
質問する
33 次
1 に答える
0
これはJavaではありません。
return tokens[] ;
おそらく、トークン配列を返すことを意味します。
return tokens;
String[]
その場合、 notを返すメソッドを宣言しString
ます。
また、これらの線がどこにあるかを示していません。
String[] quarters = new String[100] ;
quarters[] = information(fileCheck) ;
すべての人にとって、彼らはクラスに裸で座っており、メソッドやコンストラクターには座っていません。もしそうなら、2行目は宣言ではなく、メソッドまたはコンストラクターにある必要があるため、それはコーシャJavaではありません。
于 2013-03-14T22:52:25.227 に答える