2013年2月3日

Example of UUID generation in c++

摘要: http://stackoverflow.com/questions/3247861/example-of-uuid-generation-in-cA basic example:#include <boost/uuid/uuid.hpp> // uuid class#include <boost/uuid/uuid_generators.hpp> // generators#include <boost/uuid/uuid_io.hpp> // streaming operators etc.int main() { boost::uuids::u... 阅读全文

posted @ 2013-02-03 20:11 androidme 阅读(375) 评论(0) 推荐(0) 编辑

Linux客户端终端(命令行)访问samba

摘要: Linux客户端要连接samba/windows文件服务器时,需使用smbmount或mount指令: smbmount //sambaserver/d /mnt/d -o username=aaa,password=bbb smbmount //sambaserver/d /mnt/d -o username=aaa%bbb mount -t smbfs -o username=aaa,password=bbb //sambaserver/d /mnt/d mount -t smbfs -o username=aaa%bbb //sambaserver/d /mnt/d smbcl... 阅读全文

posted @ 2013-02-03 17:42 androidme 阅读(1793) 评论(0) 推荐(0) 编辑

Resource editor

摘要: http://www.angusj.com/resourcehacker/http://www.wilsonc.demon.co.uk/d10resourceeditor.htmhttp://melander.dk/reseditor/ 阅读全文

posted @ 2013-02-03 17:23 androidme 阅读(140) 评论(0) 推荐(0) 编辑

Boost智能指针——shared_ptr

摘要: boost::scoped_ptr虽然简单易用,但它不能共享所有权的特性却大大限制了其使用范围,而boost::shared_ptr可以解决这一局限。顾名思义,boost::shared_ptr是可以共享所有权的智能指针,首先让我们通过一个例子看看它的基本用法:#include <string>#include <iostream>#include <boost/shared_ptr.hpp>class implementation{public:~implementation() { std::cout <<"destroying i 阅读全文

posted @ 2013-02-03 15:12 androidme 阅读(749) 评论(0) 推荐(0) 编辑

shared_ptr<T> make_shared( Args && ... args );

摘要: shared_ptr很好地消除了显式的delete调用,如果读者掌握了它的用法,可以肯定delete将会在你的编程字典中彻底消失。但这还不够,因为shared_ptr的构造还需要new调用,这导致了代码中的某种不对称性。虽然shared_ptr很好地包装了new表达式,但过多的显式new操作符也是个问题,它应该使用工厂模式来解决。因此,shared_ptr在头文件<boost/make_shared.hpp> 中提供了一个自由工厂函数(位于boost名字空间)make_shared<T>(),来消除显式的new调用,它的名字模仿了标准库的 make_pair(),声明如 阅读全文

posted @ 2013-02-03 15:02 androidme 阅读(1085) 评论(0) 推荐(0) 编辑

Multiple Inheritance and enable_shared_from_this

摘要: http://www.codeproject.com/Articles/286304/Solution-for-multiple-enable_shared_from_this-in-ihttp://boost.2283326.n4.nabble.com/smart-ptr-enable-shared-from-this-and-multiple-inheritance-solution-td3058364.htmlhttp://stackoverflow.com/questions/5232712/questions-regarding-shared-from-this1)shared_fr 阅读全文

posted @ 2013-02-03 14:56 androidme 阅读(373) 评论(0) 推荐(0) 编辑

导航