struct pointsto_val_def
{
unsigned int lhs;
bitmap rhs;
struct pointsto_val_def *next;
};
typedef struct pointsto_val_def *pointsto_val;
typedef pointsto_val *pointsto_val_hash;
最後兩條語句是否可以簡單地被這個語句替換?Typedef結構在c中的使用
typedef struct pointsto_val_def *pointsto_val_hash
在此先感謝。乾杯。
更容易嘗試它,看看編譯器告訴你什麼,而不是發佈一個問題並等待答案,不是嗎? – mah
http://publications.gbdirect.co.uk/c_book/chapter8/typedef.html – PlayDeezGames