JSONOBject的fluentPut(key,value)方法:可链式设置元素

一个示例说明

源码并不难懂:

public JSONObject fluentPut(String key, Object value) {
        map.put(key, value);
        return this;
    }

 

你可能感兴趣的:(Java)