c 语言 pointer 发表于 2021-10-18 更新于 2023-03-13 分类于 学习 一直困扰我的……指针的语法其实不是很重要,以下三种都可以 123int* a;int * a;int *a; 不过第三种是 the c programming language 里的,应该还是用这种吧。规范很重要对吧! 传值(pass by value)vs 引用(pass by reference),记住英语 以下这个来解释不错,有时间我写上 ref: https://zhuanlan.zhihu.com/p/27974028