二级指针与指针的引用

#include "stdlib.h"
#include "stdio.h"
#include 
using namespace std;
void show()
{
	std::cout<<"this is show"<

注意函数传递时候,传递的是一个实参的副本。 这样两个变量实现了隔离,引用的时候,传的就是实参本身。
* 的含义  以地址取能容。

https://www.cnblogs.com/AndyJee/p/4630153.html
https://blog.csdn.net/qq_32483145/article/details/52901230

你可能感兴趣的:(c++)