C++
文章平均质量分 60
yangry
这个作者很懒,什么都没留下…
展开
-
stl exception hierarchy
* std::exception * std::bad_alloc * std::bad_cast * std::bad_exception * std::bad_typeid * std::ios_base::failure * std::logic_error转载 2011-07-25 16:29:34 · 499 阅读 · 0 评论 -
C++的未来,以及未来的未来
转自http://topic.csdn.net/u/20070823/16/b0152193-7a99-4238-97ef-47d99897af2e.htmlC++的未来,以及未来的未来 7月15日-20日,标准委员会在Toronto开了一次会,IBM做的东。从会后的文档转载 2011-08-06 10:20:05 · 844 阅读 · 0 评论 -
配置 Eclipse CDT + MSVC + CMake
pse CDT + MSVC + CMake转载 2011-08-05 18:30:12 · 5100 阅读 · 0 评论 -
使用boost.bind绑定class的成员函数作为boost thread的入口
class HelloWorld{public: void hello(); void entry();};void HelloWorld::entry(){ boost::thread thrd(&HelloWorld::hello);转载 2011-08-05 15:35:13 · 4657 阅读 · 0 评论 -
C++0x
《C++0x漫谈》系列之:Concept, Concept!http://blog.csdn.net/pongba/article/details/1726031关于C++ 0x 里垃圾收集器的讲座http://blog.csdn.net/g9yuayon/a转载 2011-08-06 11:14:56 · 519 阅读 · 0 评论 -
c++的virtual多态小实验
class Abstract{public: virtual void foo() const { std::cout << "Abstract::foo()" << std::endl; } void foo2() const { std::cout <<原创 2011-08-02 21:21:40 · 706 阅读 · 0 评论 -
const 函数调用类的非const成员函数报错
class Abstract{public: virtual void foo() = 0;};class Derived : public Abstract{public: virtual void foo() { std::cout << "Deriv原创 2011-08-02 20:50:31 · 1134 阅读 · 0 评论 -
what are the semantics of a const member function
转载 2011-07-31 17:13:53 · 512 阅读 · 0 评论 -
reinterpret_cast的本质
http://blog.csdn.net/coding_hello/article/details/2211466转载 2011-07-25 14:46:43 · 423 阅读 · 0 评论 -
windows下eclipse cdt 无法运行和调试程序,没有输出(调试和运行时不修改系统变量导入第三方dll库)
报错:You can't do that without a process to debug.原因:windows下待调试的程序运行时需要引用的动态库dll文件没有找到(虽然编译时连接器需要的库已经给出,但运行时仍然需要给出链接库所在的位置),但cdt又不给任何提示原创 2011-08-05 17:17:27 · 3223 阅读 · 0 评论