
A-Tour-Of-C++-C++Primer
文章平均质量分 92
FitzLeopard
这个作者很懒,什么都没留下…
展开
-
C++ Primer Section 1-3
Contents and Thoughts Two kinds of comment There are two kinds of comment in C++, single-line and paired(in CommentsInAddTwoNumbers.cpp). Single-line. Start with // and end with a newline Paired...原创 2018-04-02 09:58:42 · 399 阅读 · 0 评论 -
C++ Primer Section 1-2
Section 1-2 Contents and Thoughts Objects for I/O Stream In the header iostream , four objects for I/O stream are defined. cin — standard input cout—standard output cerr—standard error—warnin...原创 2018-04-02 09:54:43 · 199 阅读 · 0 评论 -
C++Primer Section 2-1
Section 2-1 Primitive Built-in Types Section 2-1-1 Arithmetic Types Differences in Integer Types Differences between char wchar_t char16_t and char32_t Note Differences between short int long and long原创 2018-04-10 22:46:51 · 412 阅读 · 0 评论 -
C++ Primer Section 1-4
Section 1-4 Basic Flow of Control The while Statement Basic Structure while (condition) statement Rule for while The body part(statement part) will be executed repeatedly until the co...原创 2018-04-06 20:19:00 · 1201 阅读 · 0 评论 -
C++ Primer Section 1-5
Section 1-5 Introducing Class Sales_item Class A class in C++ is a data structure, a type. When we look at a class, we should focus on the legal operations of it and not bother to care about the ...原创 2018-04-06 20:19:45 · 148 阅读 · 0 评论 -
C++ Primer Section 1-6
Section 1-6 The Bookstore Program Example Code In BookSale.cpp Thoughts As the end of Chapter 1, they present a program. But actually, it is not essentially different from the very program in...原创 2018-04-06 20:20:37 · 122 阅读 · 0 评论