摘要:
1.常量指针: const int * p 可以修改指针指向,但是不能修改指针指向的值 *p=3; 报错 int a=5; p=&a;正确 2.常量指针: int * const p 可以修改指针指向的值,但是不能修改指针指向 *p=3; 正确 int a=5; p=&a;报错 3.const in 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 4 using namespace std; 5 //结构体 6 struct Student 7 { 8 string name; 9 int age; 10 }; 11 //函数 打印 12 void Print 阅读全文
摘要:
#include<iostream> #include<string> using namespace std; #define day 7 //冒泡排序 void ArrSort(int *arr, int arrLength) { for (size_t i = 0; i < arrLength 阅读全文
摘要:
#include<iostream>using namespace std; 1 #include<iostream> 2 using namespace std; 3 //指针笔记 4 /* 5 用途:通过指针间接访问内存,记录内存地址编号 6 指针:保存一个地址,指针就是一个地址 7 指针本质: 阅读全文