テキストファイルの行を文字列配列ではない配列に格納しようとしています。戻り値の型は(コンストラクタと私は、コードの他の部分で使用しますGET- /セット方法で「GO」という名前の別のクラスを作成しました。)GO-配列することになっているテキストファイルを文字列以外の配列に格納する
int rad = 0;
GO [] list = new CD [rad];
public GO[] readFile(String filename) throws FileNotFoundException {
Scanner read = new Scanner (new File(filename));
while (read.hasNextLine()==true){
rad++;
read.nextLine();
} read.close();
read = new Scanner(new File(filename));
for (int i=0;i<list.length;i++){
//here the lines of the file should be stored in the "GO"array
// but the declaration cannot convert string to GO[]
list[i]=read.nextLine()
'== true'は論理的に冗長です。これは '* 1'や' + 0'のようなものです。 – Pshemo
あなたの質問は? – gfelisberto
編集:それは "GO []リスト=新しいGO [rad]"とされている –