最佳答案
在什么情况下,您希望在 c + + 中使用这种性质的代码?
void foo(type *&in) {...}
void fii() {
type *choochoo;
...
foo(choochoo);
}