
C++
shenlanse8805
这个作者很懒,什么都没留下…
展开
-
学习C++的网站
LearnCpp.com原创 2014-02-12 15:51:13 · 577 阅读 · 0 评论 -
Numbering conventions of strings and bitsets
The indexing conventions of strings and bitsets are inversely related:The character in the string with the highest subscript (the rightmostcharacter) is used to initialize the low-order bit in the bit转载 2014-01-24 11:52:25 · 589 阅读 · 0 评论 -
Enumeration
Enumeration provide an alternative method of not only defining but also grouping sets of integral constants. enum type-name { enumerator1,enumerator2,......} The enumerator must be a constant expres原创 2014-01-13 20:57:18 · 518 阅读 · 0 评论 -
const references
A reference serves as an alternative name for an object. Const reference is " reference to const ". A const reference can be initialized to an object of a different type or to an rvalue , such as原创 2014-01-13 20:24:04 · 485 阅读 · 0 评论