恒实速

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年9月20日

摘要: http://www.cnblogs.com/blsong/archive/2010/09/02/1816124.html1 安装及下载client 端2 什么是SVN(Subversion)?3 为甚么要用SVN?4 怎么样在Windows下面建立SVN Repository?5 建立一个Work... 阅读全文
posted @ 2014-09-20 12:59 恒实速 阅读(193) 评论(0) 推荐(0) 编辑

2013年12月13日

摘要: =========================================================== Documentation/filesystems/vfs.txt=========================================================== Overview of the Linux Virtual File System Original author: Richard Gooch Last updated on June 24, 2007. Copyright (C) 1999 Richard Gooc... 阅读全文
posted @ 2013-12-13 17:30 恒实速 阅读(650) 评论(0) 推荐(0) 编辑

2013年1月23日

摘要: QString str;int i;str.append(QString("%1").arg(i));// 或:str = QString::number(i); 阅读全文
posted @ 2013-01-23 14:42 恒实速 阅读(666) 评论(0) 推荐(0) 编辑

2013年1月22日

摘要: from: C++ primer16.1. Template DefinitionsLet's imagine that we want to write a function to compare two values and indicate whetherthe first is less than, equal to, or greater than the second. In practice, we'd want to defineseveral such functions, each of which could compare values of a giv 阅读全文
posted @ 2013-01-22 10:57 恒实速 阅读(831) 评论(0) 推荐(0) 编辑

2013年1月21日

摘要: 转自:http://www.cnblogs.com/xd502djj/archive/2010/09/22/1832912.htmlVirtual是C++ OO机制中很重要的一个关键字。只要是学过C++的人都知道在类Base中加了Virtual关键字的函数就是虚拟函数(例如函数print),于是在 Base的派生类Derived中就可以通过重写虚拟函数来实现对基类虚拟函数的覆盖。当基类Base的指针point指向派生类Derived的对象 时,对point的print函数的调用实际上是调用了Derived的print函数而不是Base的print函数。这是面向对象中的多态性的体现。 (关于虚拟 阅读全文
posted @ 2013-01-21 17:19 恒实速 阅读(161) 评论(0) 推荐(0) 编辑