Re: [問題] 關於宣告指標函式陣列

作者: carylorrk (carylorrk)   2014-09-26 16:55:07
: int ArrayNum[2]={1,2}
ArrayNum is
->
[2]: an array of
<-
int: int
: void f1(int)
f1 is
->
(int): a function take int as argument and return
<-
int: int
: void (*)(int) ArrayFuncPtr[2] ={ f1 , f2 };
ArrayFuncPtr
->
[2]: is an array of
<-
(int): ??? (function 一定要在右邊,也不是 int)
<-
(*): pointer...??? nonsense
<-
void: ???????
: void (*ArrayFuncPtr[2])(int) ={ f1 , f2 };
ArrayFuncPtr is
->
[2]: an array of
<- (括號裏面先做)
*: pointer to
->
(int): a function take int as argument and return
<-
void: void
不過還是善用 typedef 讓生命更美好。
作者: ckvir (ckvir)   2014-09-26 17:20:00
感謝解答,另外請問typedef以這個例子來說要怎改寫?
作者: bluesoul (忙死你老爸)   2014-09-26 23:03:00
講的真清楚

Links booklink

Contact Us: admin [ a t ] ucptt.com