C语言基础语法第六章指针 demo20_为什么要用二级指针的实战
例有a个学生,每个学生有b门课程的成绩。要求在用户输入学生序号以后,能输出该学生的全部成绩。用二级指针来实现。
/*
这段代码中使用了二级指针 **p2 是为了在函数 getPosPerson 中将指向二维数组 pstu 特定行的指针赋值给 **p2。
首先,函数 getPosPerson 的参数包括一个整数 pos、一个指向二维数组 pstu 的指针 int (pstu)[4],以及一个指向整型指针的指针 int **p2。
其中,二维数组 pstu 的类型是 int ()[4],表示一个包含 4 列的整型数组的指针。
在函数体内,*p2 = (int *) pstu+pos; 将 pstu 加上 pos 的偏移量,得到指向特定行的指针,然后通过 *p2 将其赋值给 ppos。
这样,在 main 函数中就可以通过 ppos 访问特定行的数据。
通过使用二级指针 **p2,可以在函数内部修改 ppos 的指向,从而使得 main 函数中的 ppos 指向特定行的数据。
*/
#include <stdio.h>
void getPosPerson(int pos,int (*pstu)[4],int **p2)
{
*p2 = (int *) pstu+pos; //p2=&ppos ==>*(&ppos)=(int *) pstu+pos ==> ppos=(int *) pstu+pos
}
int main()
{
int scores[3][4]={{22,33,44,55},{66,77,88,99},{100,99,98,97}};
int *ppos;
int pos;
printf("请输入你要查看的学生号数:0,1,2\n");
scanf("%d",&pos);
getPosPerson(pos,scores,&ppos);
for(int i=0;i<4;i++){
printf("%d ",*ppos++);
}
return 0;
}
/*
这段代码中使用了二级指针 **p2 是为了在函数 getPosPerson 中将指向二维数组 pstu 特定行的指针赋值给 **p2。
首先,函数 getPosPerson 的参数包括一个整数 pos、一个指向二维数组 pstu 的指针 int (*pstu)[4],以及一个指向整型指针的指针 int **p2。
其中,二维数组 pstu 的类型是 int (*)[4],表示一个包含 4 列的整型数组的指针。
在函数体内,*p2 = (int *) pstu+pos; 将 pstu 加上 pos 的偏移量,得到指向特定行的指针,然后通过 *p2 将其赋值给 ppos。
这样,在 main 函数中就可以通过 ppos 访问特定行的数据。
通过使用二级指针 **p2,可以在函数内部修改 ppos 的指向,从而使得 main 函数中的 ppos 指向特定行的数据。
*/