摘要: http://msdn.microsoft.com/zh-cn/library/9x1t4dy1%28v=vs.100%29http://msdn.microsoft.com/zh-cn/library/0x0cx6b1%28v=vs.100%29Begins the definition of your message map.BEGIN_MESSAGE_MAP(theClass, baseClass )theClassSpecifies the name of the class whose message map this is.baseClassSpecifies the name o 阅读全文
posted @ 2013-11-23 06:43 centerall 阅读(545) 评论(0) 推荐(0)
摘要: 1. Really wonderful ask about " using namespace std; " http://stackoverflow.com/questions/1452721/why-is-using-namespace-std-considered-bad-practiceGoogle C++ Style Guidehttp://google-styleguide.googlecode.com/svn/trunk/cppguide.xml2.http://blog.sina.com.cn/s/blog_4d3a204e010008xe.html3. V 阅读全文
posted @ 2013-11-20 21:51 centerall 阅读(338) 评论(0) 推荐(0)
摘要: The keyword using is used to introduce a name from a namespace into the current declarative region. For example:// using#include using namespace std;namespace first{ int x = 5; int y = 10;}namespace second{ double x = 3.1416; double y = 2.7183;}int main () { using first::x; using second::y; c... 阅读全文
posted @ 2013-11-20 21:12 centerall 阅读(164) 评论(0) 推荐(0)
摘要: Namespaces allow to group entities like classes, objects and functions under a name. This way the global scope can be divided in "sub-scopes", each one with its own name.The format of namespaces is:namespace identifier{ entities}Where identifier is any valid identifier and entities is the 阅读全文
posted @ 2013-11-20 20:59 centerall 阅读(174) 评论(0) 推荐(0)
摘要: 这里介绍svn的实用哦。。。呵呵。 阅读全文
posted @ 2013-07-25 20:56 centerall 阅读(159) 评论(0) 推荐(0)
摘要: 本文目录:一:vim第一级-配置二:vim第二级-存活三:vim第三级-感觉良好四:vim第四级-更好、更强、更快五:vim第五级-vim超能力六:结束语本文简介: vim如此强大,那么,应该如何学习才不会丧失兴趣呢?肯定是从最有用的开始哦。就像《Learn vim progressively》所介绍的,下面,我们一起来学习吧。首先,先看下vim的学习图哦:本文内容:一:vim第一级-配置 vim配置好了,会非常强大的哦。 "设置颜色 color desert "vim显示行号 set number "设置tab按下距离 set tabstop = 4 " 阅读全文
posted @ 2013-07-25 19:54 centerall 阅读(785) 评论(1) 推荐(1)