-5

私はこの問題を抱えています。Java を学んでいて、作成した配列の最初のオブジェクトを指すことができない演習の 1 つを実行しようとしています。

ここにコード:

    public class prova {
        public static void main(String[] args) {

                    int y=0;

                    int n=0;

                    int h=20, g=21,d=56,z=44;

                    int conf=100;

                    riga[] array=new riga[100];

                    array[n]= new riga(3,10,5,6);


                    while(conf !=105) {

                    array[n]= new riga(h++,g++,d++,z++);

                    array[n].nextbet=array[0].importobet;// i want to set the nextbet field of my current array to the importobet value of the first object in this array. Look the output down here.

                    System.out.println("ecco:"+array[n].nextbet);
                    n++;

                    conf++;

                    }
}

class riga {

//variabili

        static public int numerostep;
        static public double importoquota;
        static public double importobet;
        static public boolean esito;
        static public double cassa;
        static public double profitto;
        static public double nextbet;
   //costruttore
        public riga(int a,double d, double c,double f){

                numerostep=a;
                importobet=d;
                importoquota=c;
                cassa=f;


}
  //metodi
        public static void stampaRiga(int a, double b, double c,double f) {

                System.out.println("step:"+a+"***importo:"+b+"***quota:"+c+"***cassa:"+f);
}

}




}

問題がある行の近くのコメントに問題を書きます。この例の場合、出力は次のようになります。

21.0
22.0
23.0 
........

ただし、次のようにする必要があります。

21.0
21.0
21.0
........
4

2 に答える 2

2
array[n]= new riga(h++,g++,d++,z++);

g最初の出力が正しいように、反復ごとにインクリメントします

于 2013-05-17T14:17:56.743 に答える
1

これは、最初にインクリメントしているためですl h=20 n=0

array[n]= new riga(h++,g++,d++,z++);

1st iteration n=0 h++ ie 20+1=21  so h will have 21
2nd iteration n=1 h++ ie 21+1=22  so h will have 22
3rd iteration n=2 h++ ie 22+1=23  so h will have 23
于 2013-05-17T14:30:04.277 に答える