看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: VC++, GCC, Linux, ...) Dev c++ 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) 問題(Question): 不知道怎麼建 餵入的資料(Input): 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): 程式碼(Code):(請善用置底文網頁, 記得排版) #include<iostream> using namespace std; ListNode getNode(); struct ListNode{ ListNode *link; bool tag; union{ char data; ListNode *dlink; }; }; int main(void){ ListNode x; ListNode* h=NULL; system("pause"); return 0; } ListNode createList(){ ListNode* p,q; char x; p=getNode(); } ListNode getNode(){ ListNode k; return k; } 補充說明(Supplement): -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 111.253.210.88
EdisonX:有人可以解釋一下為什麼 link 裡面有 union 成員嗎?感謝. 09/16 00:28
littleshan:不知道你在問什麼 09/16 01:44
loveme00835:這什麼 code... 09/16 02:10
yauhh:廣義是要多廣義? 09/16 10:50
remmurds:應該是在說泛型(Generic)吧? 09/16 13:32