format *S; //堆疊陣列- 後進先出 int top; //陣列大小 public: stack::stack() //未定義大小預設100 { top = 0; S = new format[100]; }
確定! 回上一頁