阅读Loki中Funtion源码之后的个人理解,该库归纳起来可以说有三层(C++设计新思维列举到2个参数,此处列举到3个参数),要记住C++的模板其实就是C语言高级的宏定义,如果用户没有用到对应的模板编译器是不会生成对应代码的。第一层: template class ThreadingMod... Read More
#include void test_lexical_cast(){ int number = 123; string str = "456"; try { int tmp1 = boost::lexical_cast(str); string t... Read More