論 ArrayList如何?安全執行緒,arraylist實現線程

來源:互聯網
上載者:User

論 ArrayList如何?安全執行緒,arraylist實現線程

一:使用synchronized關鍵字

二:使用Collections.synchronizedList();

        假如你建立的代碼如下:List<Map<String,Object>> data=new ArrayList<Map<String,Object>>();

        那麼為瞭解決這個安全執行緒問題你可以這麼使用Collections.synchronizedList(),如:

        List<Map<String,Object>> data=Collections.synchronizedList(new ArrayList<Map<String,Object>>());

       其他的都沒變,使用的方法也幾乎與ArrayList一樣,大家可以參考下api文檔;

額外說下 ArrayList與LinkedList;這兩個都是介面List下的一個實現,用法都一樣,但用的場所的有點不同,ArrayList適合於進行大量的隨機訪問的情況下使用,LinkedList適合在表中進行插入、刪除時使用,二者都是非安全執行緒,解決方案同上(為了避免安全執行緒,以上採取的方法,特別是第二種,其實是非常損耗效能的)。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.