In Object Array = all elements are same… After assign data

后端 未结 3 1456
太阳男子
太阳男子 2021-01-21 23:47

For Example if I Create array of object And assing data...

short version of problem. array[0].init(\"ce\", 2) array[1].init(\"nh\", 2)

Output... Of array[0] Will

3条回答
  •  囚心锁ツ
    2021-01-22 00:09

    The fields in your ulamek class are static's

    It means that they belong to the ulamek Type, and not it's instances (objects).

    Alter it this way:

    class ulamek
    {
        public String ch_v;
        public int x = 0, y = -5, y_max = 325;
    ...
    

    And it should work.

提交回复
热议问题