Three methods for passing Parameters

Source: Internet
Author: User

1. Pass by value

Void swap (int A, int B) {int temp = A; A = B; B = temp;} int main () {int A = 2, B = 3; swap (a, B); Return 0 ;}

Advantage: easy to read

Disadvantage: the value in the main function cannot be changed.

 

2. Pass by pointer

Void swap (int * a, int * B) {int temp = * A; * A = * B; * B = temp;} int main () {int A = 2, B = 3; swap (& A, & B); Return 0 ;}

Advantage: the value of the main function can be changed, and parameters do not need to be copied in large quantities.

Disadvantages: Hard to read and error-prone

 

3. Pass by alias

Void swap (Int & A, Int & B) {int temp = A; A = B; B = temp;} int main () {int A = 2, B = 3; swap (a, B); Return 0 ;}

Advantage: it can change the value of the main function, which is easy to read and does not need to be copied in large quantities when passing parameters.

 

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.