码迷,mamicode.com
首页 > 其他好文 > 详细

Golang值传递和指针传递

时间:2019-02-25 21:59:03      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:Golan   imp   wap   import   指针传递   值传递   lang   turn   int   

Golang值传递和指针传递

package main

import (
    "fmt"
)

func swap1(x, y, p *int) {
    if *x > *y {
        *x, *y = *y, *x
    }
    *p = *x * *y
}

func swap2(x, y int) (int, int, int) {
    if x > y {
        x, y = y, x
    }
    return x, y, x * y
}

func main() {
    i := 9
    j := 5
    product := 0
    swap1(&i, &j, &product)
    fmt.Println(i, j, product)    //5 9 45

    a := 64
    b := 23
    a, b, p := swap2(a, b)
    fmt.Println(a, b, p)   //23 64 1472
}

Golang值传递和指针传递

标签:Golan   imp   wap   import   指针传递   值传递   lang   turn   int   

原文地址:https://www.cnblogs.com/tomtellyou/p/10433535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!