指针(通过指针间接访问内存)

#include 
#include 
using namespace std;
int main()
{	
	int a = 2;
	//定义指针 : 数据类型 *指针变量名;
	int *p = &a;
	cout << &a << " " << p << endl;
	//使用指针 : 可以通过解引用的方式找到指针指向的内存。
	//解引用 : 找到指针指向的内存中的数据。
	cout << *p << endl;
}

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