void some_function(some_type& param)
和
void some_function(some_type * param)
谢谢
当您传递对变量的引用时,编译器会在将变量传递给子例程并取消引用子例程中的变量时负责获取变量的地址.