C++、 类模板
米米_nemo
做自己,温柔的技术人员
展开
-
-C++中模板类使用友元模板函数
问题始于学习数据结构,自己编写一个单链表,其中用到了重载输出运算符 template class List{ friend std::ostream& operator & slist); //…… };用vs2008可编译,但无法链接:无法解析的外部符号…… 后来上网查改为template class List{ friend std::ostre转载 2012-09-07 20:11:59 · 709 阅读 · 0 评论 -
python执行shell
[转]python调用shell命令的几种方法2013-07-12 15:51 1.1 os.system(command) 在一个子shell中运行command命令,并返回command命令执行完毕后的退出状态。这实际上是使用C标准库函数system()实现的。 这个函数在执行command命令时需要重新打开一个终端,并且无法保存command命令的执行结果。 1.2 os.po转载 2014-03-30 15:03:37 · 314 阅读 · 0 评论