探究官方 JSON 與阿里的 FastJSON 中 put 方法

2017-07-13    分類:JAVA開發、程式設計開發、首頁精華2人評論發表於2017-07-13

本文由碼農網 – 冠軍原創,轉載請看清文末的轉載要求,歡迎參與我們的付費投稿計劃

首先看兩段程式碼

//======================第一段=============================

import org.json.JSONObject;

public class JSONTest {

      public static void main(String[] args) {

            JSONObject json = new JSONObject();

            json.put("key", "123");

            System.out.println("#1:"+json.toString());

            System.out.println("#2:"+ new JSONObject().put("key", "123").toString() );           

      }

}

//============================第二段=======================

import com.alibaba.fastjson.JSONObject;

public class JSONTest {

      public static void main(String[] args) {

            JSONObject json = new JSONObject();

            json.put("key", "123");

            System.out.println("#1:"+json.toString());

            System.out.println("#2:"+ new JSONObject().put("key", "123").toString() );                 

      }

}

//===================================================

很明顯的看出這兩部分只是引入的jar不同而已。那麼執行起來效果能不能一樣呢?

答案肯定是不同的。

首先json.org給出的jar包能夠正常執行出你想要的結果,但是fastjson就會給你一些驚喜(自己試一下吧)。

為什麼會有這種不同呢?

一看原始碼便知。

首先json.org實現:

public JSONObject put(String key, Object value) throws JSONException {

        if (key == null) {

            throw new NullPointerException("Null key.");

        }

        if (value != null) {

            testValidity(value);

            this.map.put(key, value);

        } else {

            this.remove(key);

        }

        return this;

}

這裡的put函式會將當前例項返回(return this).所以#2處的連續操作始終是當前例項出來的JSONObject的操作,是沒有問題的。

再看fastjson中put實現方法:

public Object put(String key, Object value) {

        return map.put(key, value);

}

這裡返回了map的put方法返回值,下面給出map的put方法實現:

 /**

     * Associates the specified value with the specified key in this map.

     * If the map previously contained a mapping for the key, the old

     * value is replaced.

     *

     * @param key key with which the specified value is to be associated

     * @param value value to be associated with the specified key

     * @return the previous value associated with <tt>key</tt>, or

     *         <tt>null</tt> if there was no mapping for <tt>key</tt>.

     *         (A <tt>null</tt> return can also indicate that the map

     *         previously associated <tt>null</tt> with <tt>key</tt>.)

     */

    public V put(K key, V value) {

        if (key == null)

            return putForNullKey(value);

        int hash = hash(key);

        int i = indexFor(hash, table.length);

        for (Entry<K,V> e = table[i]; e != null; e = e.next) {

            Object k;

            if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {

                V oldValue = e.value;

                e.value = value;

                e.recordAccess(this);

                return oldValue;

            }

        }

當傳入的key已經存在時,將返回key對應已有的value,如果key不存在,就會返回null,註釋裡面說的非常清楚。

所以fastjson中的put會依據map中已有的key值來返回不同的值,所以#2中的toString是對key對應的值的操作,但是如果之前key在json中不存在就會變成對null的操作。

一點學習經歷,不足之處,請多指正。

本文連結:http://www.codeceo.com/article/json-org-vs-fastjson-put.html
本文作者:碼農網 – 冠軍
原創作品,轉載必須在正文中標註並保留原文連結和作者等資訊。]

相關文章