0%

c 语言 pointer

一直困扰我的……指针的语法其实不是很重要,以下三种都可以

1
2
3
int* a;
int * a;
int *a;

不过第三种是 the c programming language 里的,应该还是用这种吧。规范很重要对吧!

传值(pass by value)vs 引用(pass by reference),记住英语

以下这个来解释不错,有时间我写上

ref:

https://zhuanlan.zhihu.com/p/27974028