
Boost
Yours风之恋
一个孜孜不倦的求知者………………………………
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Boost 库编译方法
http://blog.youkuaiyun.com/chjp2046/article/details/5662691 http://www.cnblogs.com/xuqiang/archive/2011/05/08/2040420.html http://www.cnblogs.com/ComputerG/archive/2011/03/10/1979730.html (推荐)原创 2013-11-27 18:50:40 · 872 阅读 · 0 评论 -
First boost
#include #include #include using namespace boost; using namespace std; int main() { timer t; cout << t.elapsed_max()<< endl; cout << t.elapsed_min() << endl; cout << t.elapsed() << endl; { // 管理生原创 2013-11-27 18:52:16 · 806 阅读 · 0 评论 -
Boost 计算信用卡 免息期
#include #include #include using namespace boost; using namespace boost::gregorian; #include #include using namespace std; class credit_card { public: string bank_name; int bill_day_no; credit_card原创 2013-11-27 19:15:48 · 1080 阅读 · 0 评论 -
Boost 智能指针
scoped_ptr auto_ptr unique_ptr scoped_array shared_ptr ------------------------------ #include #include #include #include using namespace boost; using namespace boost::gregorian; #include #include u原创 2013-11-28 10:43:39 · 914 阅读 · 0 评论