2016-03-22 11 views
0

ArrayListに定数値を格納したいのですが、変数に等しい新しい定数をどのように作成できますか?私は新しい一定値に結果を変換し、chilist ArrayListの中でそれを保存したいArrayListに格納する新しい定数を作成する方法は?

public class JavaTutorials{ 

    static double cor = 3.90000231; 

    static double result = 0; 

    static ArrayList<Double> chilist = new ArrayList<>(); 
    static ArrayList<Integer> ilist = new ArrayList<>(); 

    public static void main(String[] args) throws InterruptedException{ 
     int j; 
     for(j = 0; j <= 999999999; j++){ 
      result = result * cor + j; 
     } 
    } 
} 

は、これは私のコードです。

私の悪い英語のために申し訳ありません。

ありがとうございました。

+3

'result'は' 0'で始まり、 '0'は何でも' 0'ですから、いつも '0'が得られます。また、実行時の計算結果は定数ではなく**定数です。 –

+0

しかし、ArrayListに格納する新しい値を自動的に作成する方法はありますか? –

+0

ループ内で 'chilist.add(result);'を試しましたか? –

答えて

1
public static void main(String[] args) throws InterruptedException{ 
    int j; 
    for(j = 0; j <= 999999999; j++){ 
     result = result * cor + j; 
     chilist.add(result) 
    } 
} 

このようなものはありますか?

+0

私はこれを解決しました。ありがとうMario。 –

関連する問題