摘要:
18.1异常处理try { // actions that cause an exception to be thrown}catch (...) { // work to partially handle the exception throw;}在C++中,通过throwing... 阅读全文
摘要:
16.1.1函数模板 When we call a function template, the compiler (ordinarily) uses the arguments of the call to deduce the template parameter(s) for us. The 阅读全文