指针引用

替代双指针的参数传递 

如:void func(int ** pArray) ;

可以替换为:void func(int* & pArray);

原文地址:https://www.cnblogs.com/zsb517/p/3843582.html