每种类型,无论是内置类型还是类类型,都对该类型对象的一组(可能为空的)操作的含义进行了定义.比如,我们可以将两个int值相加,运行vector对象的size操作,等等.这些操作定义了用给定类型的对象可以完成什么任务.复制构造函数,赋值操作符和析构函数总称为复制控制(copy control).编译器自动实现这些操作,但类也可以定义自己的版本.复制构造函数: 直接初始化 和 复制初始化.string... Read More
算术转换(arithmetic conversion) 整型提升(integral promotion)指针转换转换为bool类型转换与枚举类型转换为const对象显式转换satic_cast, dynamic_cast, const_cast 和 reinterpreter_caststatic_cast:编译器隐式执行的任何类型转换都可以由static_cast显式完成.当需要将一个较大的算术... Read More
模板形参不必全都是类型. 在调用函数时非类型形参将用值代替,值的类型在模板形参表中指定.e.g.: Read More
指向常量的指针 和 常量指针在下面的声明中,圆括号是必不可少的:int *ip[4]; // array of pointers to intint (*ip)[4]; // pointer to an array of 4ints Read More
int (*)[NUM] 与 int *[NUM] 区别:数组指针,指针数组前一个的本质是指针,后一个的本质是数组。 int (*w)[TEAM_NUM] =(int (*)[TEAM_NUM] ) w1; Read More
Viewing Text FilesYou can easily view files by using command-line tools ,including cat,less,head,and tail.The simplest command for dealing with text files is cat.e.g.:cat mytextfiletail mytextfile ( v... Read More
Most versions of Linux have two types of user accounts: standard and root.The root user can access and /or delete whatever files it wants.It can configure hardware,change settings, and so on.Ububntu i... Read More
打开gVim,进入“编辑”-“启动设定”在“behave mswin”下行位置添加 set nobackup 语句退出并保存配置文件 :wq Read More
说明:Monaco字体,苹果出品,传说中最好的编程字体。英文大小写,数字,标点等宽,一中文字相当于两英文字符。http://ishare.iask.sina.com.cn/f/4944524.htmlGVim下载地址:http://www.vim.org/download.php#pcManaco字体下载地址其它编程字体参考:http://www.javaeye.com/news/11102-10... Read More