Java's ArrayList

Source: Internet
Author: User

ArrayList is not thread-safe, the source code is not used synchronized

Initialize the ArrayList, if the initial capacity is not specified, the first time to add elements to the inside, the initial growth capacity of ten

ArrayList expansion algorithm, each growth 50%

When the capacity is not enough, it will increase the current capacity of 50%, and then call the System.arraycopy method, so if you know the capacity to grow, it is best to call the ensurecapacity(int minimumcapacity) method To increase efficiency by expanding the capacity first

ArrayList multiple use of the System.arraycopy method

arraycopy (Object src, int srcpos, object dest, int destpos, int length)
SRC: source array;
Srcpos: The starting position of the source array to be copied;
Dest: an object array;
Destpos: The starting position of the destination array placement;
Length: The size of the copy.

Java's ArrayList

Related Article

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.