-2

我是 php 开发人员,我是 Java 新手。我只想在 java 中创建一个多级对象并为其分配值。请看一下对象。

Object = {
0 : { 
name : abc,
description : xyz,
},
1  : {
   0 : {
       name : abc1,
       description : abc2
   }
   1 : {
       name : abc 
       description add,
   }

}

}

4

1 回答 1

0

首先,你需要通过定义一个类来创建一个对象

例子

class XYZ {
    //constructor to initialize value
    XYZ(X detail, Y information){
     this.detail = detail;
     this.information = information;
   }
    X detail;
    Y information
}

class X {
    //constructor to initialize value
   X(String name, String description){
   this.name = name
   this.information = information
  }
 String name;
 String description;
}

class Y {
 //constructor to initialize value
 Y(X first, X second){
     this.first = first;
     this.second = second;
   }
 X first;
 X second;
}

并分配默认值使用构造函数

于 2019-01-17T05:28:47.447 回答