C++ Boost
文章平均质量分 86
wyc1230
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ Review------ Polymorphism
1.–Base-pointer to base-object, derived-pointerto derived•Straightforward–Base-pointer to derived object•Can only call base-class functions(But if thebase class function isdeclared virtual, th原创 2012-01-22 13:05:28 · 374 阅读 · 0 评论 -
C# Study
Out vs RefThe out keyword causes arguments to be passed by reference. This is like theref keyword, except thatref requires that the variable be initialized before it is passed.Although variabl原创 2012-12-01 03:02:26 · 448 阅读 · 0 评论 -
C++ 概念
If you define a class like this:class X: public Y{ private: int m_a; char* m_b; Z m_c;};The following methods will be defined by your compiler.Const原创 2015-03-24 14:03:55 · 737 阅读 · 0 评论
分享