请教一个基础问题

let_go · · 772 次点击
可以了解下多重赋值原理的 上述swap函数在底层的伪代码 ```go func swap(a, b *int) { a_tmp := *a b_tmp := *b *a = b_tmp *b = a_tmp } ```
#1