c指针 --笔记2返回指针值的函数

返回指针值的函数

一般带回指针值的函数,定义形式为:

int   *a (int x,  int y);

看这个经典案例:

#include <stdio.h>

int main(int argc, char const *argv[])
{
double score[][] = {{60.0, 70.0, 80.5, 20.1}, {60.0, 70.0, 80.5, 21.1}, {60.0, 70.0, 80.5, 22.1}};
double *search(double(*pointer)[], int n);
double *p;
int i, m=; p = search(score, m);
for (i = ;i < ; i++)
{
printf("%f\t", *(p + i));
}
printf("\n");
} double *search(double(*pointer)[], int n)
{
double *pt;
pt = *(pointer + n);
return pt;
}

指针函数和函数指针的区别

1. 指针函数是指带指针的函数, 即本质是一个函数

2. 函数指针是指向函数的指针变量, 因而函数指针本身首先是指针变量, 只不过该指针指向函数

指针数组

概念:

一个数组,若其元素均被指针类型数据,称为指针数组, 也就是说,指针数组中的每一个元素

都相当于一个指针变量。

一维指针数组的定义形式为: int *name[4];

#include <stdio.h>

int main(int argc, char const *argv[])
{
int a[] = {, , , , };
int *name[] = {&a[], &a[], &a[], &a[], &a[]};
int i; for (i = ; i < ; i++)
{
printf("%d ", *name[i]);
}
printf("\n");
}

指向指针的指针

怎么定义一个指向指针数据的指针变量呢?

形式如: char **p;

p前面有两个*号, *运算符的结合性是从右到左, 因此**p相当于*(*p), 显然会*p是

指针变量的定义形式。如果没有最前面的*, 那就是定义指向字符数据的指针变量。

现在它前面有有一个*号, 表示指针变量p是指向字符指针变量的。*p就是p所指向的另一

个指针变量

代码:

#include <stdio.h>

int main(int argc, char const *argv[])
{
char *name[] = {"abc", "efg", "higk"};
char **p;
int i; for (i=; i<;i++)
{
p = name + i;
printf("%s\n", *p);
}
}

总结

c指针  --笔记2返回指针值的函数

c指针  --笔记2返回指针值的函数

c指针  --笔记2返回指针值的函数

上一篇:tomcat运行报错Failed to start component [StandardEngine[Catalina].StandardHost[localhost].


下一篇:tomcat启动报错There is insufficient memory for the Java Runtime Environment to continue