How to implement a fixed maximum size of HashMap in Java

Source: Internet
Author: User

How to implement a fixed maximum size of HashMap in Java

Using the Removeeldestentry method of the Linkedhashmap, overloading this method allows the map to grow to the maximum size, and the oldest record is deleted after each new record is inserted.

ImportJava.util.LinkedHashMap;ImportJava.util.Map; Public classMaxsizehashmap<k, v>extendsLinkedhashmap<k, v> {    Private Final intmaxSize;  PublicMaxsizehashmap (intmaxSize) {         This. maxSize =maxSize; }    //    //Returns True if this map should the remove its eldest entry. //This method was invoked by put and Putall after inserting a new entry into the map. //It provides the implementor with the opportunity to remove the eldest entry each time a new//One is added. This is useful if the map represents a cache://It allows the map to reduce memory consumption by deleting stale entries. //@Overrideprotected BooleanRemoveeldestentry (Map.entry<k, v>eldest) {        returnSize () >maxSize; }}

How to implement a fixed maximum size of HashMap in Java

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.