Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我想在这里澄清我的问题。在我的编码开发过程中,我发现自己在我的类成员函数中通过引用传递,除了那些内置类型。但是我有一个想法,为什么我不使用指针来传递参数(通过指针传递)。
通过引用传递而不是通过指针传递是一种不好的做法吗?
一种常见的风格是通过 const 引用传递输入参数,并通过指针传递输出参数。在这种风格中,我们不通过非常量引用传递输出参数,以更清楚地描述输出参数的输入。