搜索

首页  >  问答  >  正文

java - 一个多层嵌套的类,json的辅助类需要初始化,要怎么写比较简便?

public class PieOption {
 private SeriesBean series;
    public static class SeriesBean {
        private LabelBean label;
        public static class LabelBean {      
            private EmphasisBean emphasis;
            public static class EmphasisBean {
                private boolean show;
                private TextStyleBean textStyle;
                public static class TextStyleBean {
                    private String fontSize;
                    private String fontWeight;
                }
            }
        }
    }
}

new个对象再调用set方法实在是太费事了
SeriesBean.LabelBean.EmphasisBean.TextStyleBean textStyleBean = new SeriesBean.LabelBean.EmphasisBean.TextStyleBean();这样写太可怕了

阿神阿神2786 天前547

全部回复(1)我来回复

  • 滿天的星座

    滿天的星座2017-05-17 10:09:49

    不要写成内部类...

    回复
    0
  • 取消回复