程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c語言-C語言結構體的指針問題。

c語言-C語言結構體的指針問題。

編輯:編程綜合問答
C語言結構體的指針問題。

struct GenInfo {
uint64_t (*next)(struct GenInfo * const);

enum GeneratorType type;
union {
struct GenInfo_Constant constant;
struct GenInfo_Counter counter;
struct GenInfo_Discrete discrete;
struct GenInfo_Exponential exponential;
struct GenInfo_File file;
struct GenInfo_Histogram histogram;
struct GenInfo_HotSet hotset;
struct GenInfo_Zipfian zipfian;
struct GenInfo_Latest latest;
struct GenInfo_Uniform uniform;
} gen;
};

該結構體內的第一行: uint64_t (*next)(struct GenInfo * const); 這一行表示的是什麼?
是不是指向下一個該結構體的指針呢?
謝謝。

最佳回答:


 是一個函數指針。
qq_27183003
qq_27183003
gegege123gege
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved