Java Handy Sticker 10

Source: Internet
Author: User

Copying an array to another array without traversing each element, since the array is generally stored in a contiguous space, Java provides a arraycopy way to copy the entire array past.

The example code is as follows:

 public  class   arraycopytest{ public  static  void   main (string[] args) {
    int  [] a = {1,2,3,4 int  [] b = new  int  [7 0,b,0,a.length);  for  (int  i=0; i<b.length; i++< Span style= "color: #000000;"        ) {System.out.print (B[i]  + "" );    } System.out.println (); }}

The parameters in the Arraycopy method have the following meanings:

A: Source array

0: Where to start copying from source array

B: Target array

0: Copy to destination array which location

4: How many elements are copied

See the Java DOC documentation for specific syntax.

Java Handy Sticker 10

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.