
boost
天地蜉蝣
.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
example for bind
class people { public: people(const string& name) :_name(name) { } void SaySomething(const string& msg) const { cout<<_name<<" said: "<< msg << endl; } private: string _name; }; void run原创 2014-06-23 16:48:47 · 649 阅读 · 0 评论 -
boost 最短路径 johnson
#include #include #include #include #include #include #include #include #include int main() { using namespace boost; typedef adjacency_list<vecS, vecS, undirectedS, no_property,转载 2015-04-29 10:27:06 · 829 阅读 · 0 评论 -
线程本地存储实例
// Copyright (C) 2001-2003 // William E. Kempf // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0转载 2017-05-12 10:40:03 · 432 阅读 · 0 评论