摘要:
1异常使用示例:try { for ( int ix = 1; ix < 51; ++ix ) { if ( ix % 3 == 0 ) stack.push( ix ); if ( ix % 4 == 0 ) stack.display(); if ( ix % 10 == 0 ) { int dummy; stack.pop( dummy ); stack.display(); } }}catch ( pushOnFull ) { ... }catch ( popOnEmpty ) { ... }其中的push... 阅读全文
摘要:
1用宏扩展机制实现的函数,虽然没有类型的限制,但是有一定的危险,比如调用时传入p++等,可能出错。如:#define min(a,b) ((a) inline Type min( Type, Type );// 错误: inline 指示符放置的位置错误inlinetemplate Type min( Array, int );3函数模板指定了怎样根... 阅读全文