class stack{ ... float *stk; ... } stack::~stack(){ delete [] stk;//[]有什么用啊?}
数组本质是内存中一段连续的空间用这段连续空间首位置的地址便可以索引这个数组了。