c++学习日志20
指针和数组
作用:利用指针访问数组中元素
#include<iostream>
using namespace std;
int main(){
//指针和数组
//利用指针访问数组中的元素
int arr[10] = { 1,2,3,4,5,6,7,8,9,10 };
cout << "第一个元素为: " << arr[0] << endl;
int * p = arr; //arr就是数组首地址
cout << "利用指针访问第一个元素" << *p << endl;
p++; //让指针向后偏移4个字节
cout << "利用指针访问第二个元素" << *p << endl;
cout << "利用指针遍历数组" << endl;
int * p2 = arr;
for(int i = 0; i < 10 ; i++)
{
// cout << arr[i] << endl;
cout << *p2 << endl;
p2++;
}
system("pause");
return 0;
}
指针和函数
#include<iostream>
using namespace std;
void swap01(int a, int b)
{
int temp = a;
a = b;
b = temp;
cout << "swap01 a = " << a << endl;
cout << "swap01 b = " << b << endl;
}
void swap02(int *p , int *p2)
{
int temp = *p1;
*p1 = *p2;
*p2 = temp;
}
作用:利用指针访问数组中元素
#include<iostream>
using namespace std;
int main(){
//指针和数组
//利用指针访问数组中的元素
int arr[10] = { 1,2,3,4,5,6,7,8,9,10 };
cout << "第一个元素为: " << arr[0] << endl;
int * p = arr; //arr就是数组首地址
cout << "利用指针访问第一个元素" << *p << endl;
p++; //让指针向后偏移4个字节
cout << "利用指针访问第二个元素" << *p << endl;
cout << "利用指针遍历数组" << endl;
int * p2 = arr;
for(int i = 0; i < 10 ; i++)
{
// cout << arr[i] << endl;
cout << *p2 << endl;
p2++;
}
system("pause");
return 0;
}
指针和函数
#include<iostream>
using namespace std;
void swap01(int a, int b)
{
int temp = a;
a = b;
b = temp;
cout << "swap01 a = " << a << endl;
cout << "swap01 b = " << b << endl;
}
void swap02(int *p , int *p2)
{
int temp = *p1;
*p1 = *p2;
*p2 = temp;
}
全部评论
加油
相关推荐
点赞 评论 收藏
分享
自信的安迪一定要上岸:红温了
点赞 评论 收藏
分享