c++中指针的引用

指针的引用:
套用引用公式:type &q=p
假设:
void fun(int * &q)//int * &q = p
{

}
void test()
{
int *p=NULL;
fun(p)
}
 

你可能感兴趣的:(c++,数据结构,开发语言)