首先解釋一下
創(chuàng)新互聯(lián)建站專注于庫爾勒網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供庫爾勒營銷型網(wǎng)站建設,庫爾勒網(wǎng)站制作、庫爾勒網(wǎng)頁設計、庫爾勒網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務,打造庫爾勒網(wǎng)絡公司原創(chuàng)品牌,更為您提供庫爾勒網(wǎng)站排名全網(wǎng)營銷落地服務。
st
的問題吧:st
就是取結(jié)構(gòu)體的
st
的地址傳給結(jié)構(gòu)體內(nèi)的函數(shù)
p
和
o,
根據(jù)前面
st
的定義,也就是傳給
和
power。這樣
和
power
函數(shù)就可以讀取結(jié)構(gòu)體中的
i
和
x
值。
然后沿著各個思路,可以寫出
和
power
函數(shù),如下:
void
print(ST
*st){
printf
("%g",
st-x);
}
void
power(ST
*st){
int
k;
double
y=1;
for
(k=0;k
i;k++)
y*=st-x;
st-x
=
y;
}
不過這里有個問題,就是你之前的
struct
中定義的函數(shù)指針是沒有參數(shù)的,但是主函數(shù)調(diào)用時是有參數(shù)的,這是矛盾的呀。要改一下:
struct
ST{
int
i;
double
x;
void
(*o)(ST*);
void
(*p)(ST*);
}
;
就沒有問題了。
//在結(jié)構(gòu)體中包含函數(shù)指針,
//這樣,可以使用結(jié)構(gòu)體,調(diào)用函數(shù)。
//這個有點像C++的面向?qū)ο蟮念?
//十分好用。?
#include?"stdio.h"??
struct?DEMO??
{??
int?x,y;??
int?(*func)(int,int);?//函數(shù)指針??
};??
int?add2(int?x,int?y)??
{??
return?x+y;??
}??
int?main()??
{
int?ret=0;
struct?DEMO?demo;??
demo.func=add2;?//結(jié)構(gòu)體函數(shù)指針賦值??
ret=demo.func(3,4);
printf("func(3,4)=%d\n",ret);??
}
指針就是指向內(nèi)存的某個地址的一個變量。
結(jié)構(gòu)體指針就是這個指針變量的值必須指向存放該結(jié)構(gòu)體的內(nèi)存位置。
當這個指針沒有任何指向時,可以賦值為null值,但是改指針不可使用,程序中應該做判斷。下面是一些賦值演示。
struct student{
int id;
int score;
} aaa;
struct student *p = null;//結(jié)構(gòu)體指針p初始化賦值為null
struct student *p2=aaa;//p2指向aaa
struct student *p3=(struct student *)malloc(sizeof(struct student));//內(nèi)存中申請一個結(jié)構(gòu)體空間,并將地址強制轉(zhuǎn)換為結(jié)構(gòu)體指針變量賦值給p3