8
27
2012
38

C++ Primer 4th Edition 学习笔记

      大二的Jingo需要到二校区给学弟们当C\C++程序设计实验课的TA,为了不出现各种XXOO而Jingo解决不了的事情,外加因为一直不按照C++标准去写程序,C\C++特性乱用的Jingo的确想改一下自己写代码的风格习惯,趁着前几周课程不紧,Jingo决定拜读学习一下《C++ Primer 4th Edition》。为了监督自己的学习和备忘,Jingo每天要记下一点学习笔记。

第2章 变量和基本类型

      C++的每一种变量规定了最小的存储空间;
      可以给unsigned的类型赋值为负数、超过范围的数,需要%256、65536这样的数;
      整形中,0开头比如024为八进制(octal),十六进制(hexadecimal)0x或0X开头;
      整形字面值后加L、U;
      浮点字面值后可加F、L,默认为double;  1024f是不正确的;
      转义序列\000(octal)、\xddd(hexadecimal)
      多行语句可以在行末加\链接起来;
cou/
t << en/
dl;
      标识符不能包含两个连续的下划线,也不能下划线开头后紧跟一个大写字母;
      非const引用只能绑定到与该引用同类型的对象;
      const引用能绑定到不同类型或者绑定到右值;
     
double dval=3.14;
const int &ri=dval;
      非const变量默认为extern,const默认为局部变量;
      枚举型示例:
enum Point {
    point2d = 2, point2w, point3d = 3, point3w
};   
      于是 point2d = 2,point2w = 3, point3d = 3,point3w = 4;
 
 
第3章 标准库类型
 
      cin读入string时,读到空白字符,读取终止(空白字符留在输入流中);
      getline读入时,遇到换行符终止读入并丢弃换行符;
      string::size_type,verctor<int>::size_type不要把size返回给int变量;
      string s5 = s4+","+"world";这样ok;
      string s6 = "hello"+","+s2;这样不正确;
      cctype中的isalum(c)数字或字字母之类的函数;
      vector<T> v(n) 默认初始化n个值;
      vector(a+2,a+4) 用数组初始化vector;
      C++习惯用!=;
      改变vector长度之后,不要信赖原有的迭代器;
      bitset<32> bitvec("1100") string类型倒序初始化;
      bitset<32> bitvec(str,5,4) 第5个开始4个字符;
      bitset<32> bitvec(str,str.size()-4) 只用后四位;
      site_t 在cstddef中定义的与机器相关的无符号整数;
 
第4章 数组和指针
 
      void*指针支持操作:
          与另一指针比较;
          先函数传递void*指针或从函数返回void*指针;
          给另一个void*指针赋值;
          不允许使用void*指针操纵它所指向的对象;
      cstddef中定义了ptrdiff_t这是一种与机器有关的有符号类型;
      指针指向数组某个元素后可以 k = p[-2]
      const int *p为const指针,是一个自认为指向const变量的指针;
      int *const p为指针常量,不可改变指针存储的地址;
      定义const int p = 2后,不能让一个非const指针指向p;
     
typedef string *pstring;
const pstring cstr;
pstring const cstr;
string *const cstr;
//以上三种定义形式等价
      创建动态数组并用初始值初始化int *pia = new int[10]();
      删除一个动态数组 delete [] pia;
      char *str = st2.c_str();
int ia[3][4];
int (*ip)[4];
ip = &ia[2];

typedef int int_array[4];
int_array *ip=ia;

for (int_array *p = ia; p != ia + 3; ++p)
     for (int *q = *p; q != *p + 4; ++q)
         cout << *q << endl;
     
 
第5章 表达式
 
      只在有必要时才用后置操作符;
      *iter++代表*(iter++)先使用原值解引用,再++,对比(*iter)++和*++iter;
     
int x[10];
int *p = x;
cout << sizeof(x)/sizeof(*x) << endl; //数组长度
cout << sizeof(p)/sizeof(*p) << endl; //与机器有关,返回指针大小/int大小
     
     
       dynamic_cast用于支持运行时识别指针或引用所指向的对象,目前用途不太明确,mark一下;
     const_cast转换const状态;
     int a = static_cast<int>(b);
     reinterpret_cast将操作数内容解释为另一种不同的类型;
 
第6章 语句
 
       悬垂else;
     异常处理代码中,try\throw\catch的使用先mark一下
     预处理宏,assert()是一个宏,现代C++程序很少使用预处理宏。
 
 
第7章 函数
 
       尽量用const引用不被修改的形参;
     f(int (&arr)[10])传递数组的引用,数组元素个数确定。
     f(int (*matrix)[10]) 与 f(int matrix[][10])等价;
 
#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
     for (int i = 0; i != argc; ++i) {
          cout << argv[i] << endl;
     }
     return 0;
}
    
     varargs的用法,先Mark;
 

 

知识共享许可协议
本作品采用知识共享署名-非商业性使用-相同方式共享 3.0 中国大陆许可协议进行许可,转载请注明出处。
Category: Programming Language | Tags: c++ | Read Count: 6493
seo service UK 说:
2024年1月16日 17:09

I really enjoy simply reading all of your weblogs. Simply wanted to inform you that you have people like me who appreciate your work. Definitely a great post. Hats off to you! The information that you have provided is very helpfu

먹튀폴리스주소 说:
2024年2月14日 13:32

This is my first time i visit here. I found so many entertaining stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the leisure here! Keep up the good work. I have been meaning to write something like this on my website and you have given me an idea.

온라인카지노추천 说:
2024年2月14日 14:00

I have been exploring for a little bit for any high-quality articles or blog posts on this kind of area . Exploring in Yahoo I finally stumbled upon this web site. Reading this information So i am glad to express that I have a very good uncanny feeling I came upon exactly what I needed. I most no doubt will make sure to do not omit this web site and provides it a glance a relentless basis.

토크리 说:
2024年2月14日 14:11

Very interesting blog. Alot of blogs I see these days don't really provide anything that I'm interested in, but I'm most definately interested in this one. Just thought that I would post and let you know.

토토사이트순위 说:
2024年2月14日 14:31

This is actually good to read the content of this blog. here is very general and the huge knowledgeable platform has been known by this blog. Kindly I share the most useful topic which is important for every user.

토토사이트추천 说:
2024年2月14日 14:33

What a brilliant job you’ve accomplished here. I read few posts on this web site and I believe that your blog is real interesting and holds circles of wonderful information. I would like to suggest you an article u can also refer my work Robloxplayer.exe.

토토사이트 说:
2024年2月14日 14:57

I have visit first time on your blog this is very nice and useful information for me. Thank you ! I have also shared some more information about.. this is very intresting topic you can visit on my blog reaction time test.

먹튀검증사이트 说:
2024年2月14日 15:01

I read your article. Great information you provide. I never read stunning article like yours thanking you so much for the share such a outstanding information.

토랜드 说:
2024年2月14日 15:02

Hello, It was really great that you shared the information on this topic with us, rarely the people choose such a topic for article, the information you provide is good updated and so much useful to us the things you explain in details its interesting part of your article, I enjoyed your article, I am also writing the article on reaction time test . this is very intresting topic I hope you also like my topic so you can definitely visit our website Credit card generator.

안전놀이터 说:
2024年2月14日 15:15

Very interesting, good job and thanks for sharing such a good blog. Your article is so convincing that I never stop myself to say something about it. You’re doing a great job. Keep it up,

먹튀사이트 说:
2024年2月14日 15:29

I must say, this article is quite impressive and I genuinely appreciate the writer's effort in putting together such a valuable piece of work. The points made are undoubtedly valid and thought-provoking, and I commend them for their insightful perspective. The rest of the website is also incredibly well-done and showcases a true commitment to excellence. I wanted to take a moment to express my gratitude for sharing this informative post, and also recommend the Anomaloscope vision Test to anyone who may be struggling with color vision deficiencies. Thank you once again for this fantastic contribution and please keep up the outstanding work!

메이저사이트 说:
2024年2月14日 15:31

Embark on an exciting adventure as we delve into the enthralling story of Harley West. Beyond the powerful engines and iconic leather jackets, this exploration uncovers a distinctive lifestyle, a tight-knit community, and a legendary brand that has permanently reshaped the world of driving.

토토사이트 说:
2024年2月14日 15:41

This is my first time i visit here. I found so many entertaining stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the leisure here! Keep up the good work. I have been meaning to write something like this on my website and you have given me an idea. also, you can check Test Your Color Vision.

먹튀사이트조회 说:
2024年2月14日 15:58

Yavoo, I recently came across your article and have been reading along. I want to express my admiration of your writing skill and ability to make readers read from the beginning to the end. I would like to read newer posts and to share my thoughts with you.

토토사이트 说:
2024年2月14日 16:13

Excellent read, Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work.

토토사이트 说:
2024年2月14日 16:40

Thank you for your contributions to the community, and please continue to update us with your blog.I’ve got something equally dope to share about reaction time test that’ll blow your mind even more! So, check it out above and let me know what you think!

온라인카지노쿠폰 说:
2024年2月14日 16:44

I am always searching online for storys that can accommodate me. There is obviously a multiple to understand about this. I feel you made few salubrious points in Attributes moreover. Detain busy, awesome career!

토토사이트추천 说:
2024年2月14日 17:21

Thank you for the good and very helpful information. It is very interesting. I love all the things you share and see your beautiful creation. Thank you for sharing with everyone. I know everything about you. It's great and it's great.

카지노세상 说:
2024年2月14日 17:28

I am always searching online for storys that can accommodate me. There is obviously a multiple to understand about this. I feel you made few salubrious points in Attributes moreover. Detain busy, awesome career!

토토사이트추천 说:
2024年2月14日 17:33

This is my first time i visit here. I found so many entertaining stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the leisure here! Keep up the good work. I have been meaning to write something like this on my website and you have given me an idea.

토토사이트순위 说:
2024年2月14日 17:40

I have been exploring for a little bit for any high-quality articles or blog posts on this kind of area . Exploring in Yahoo I finally stumbled upon this web site. Reading this information So i am glad to express that I have a very good uncanny feeling I came upon exactly what I needed. I most no doubt will make sure to do not omit this web site and provides it a glance a relentless basis.

토토사이트추천 说:
2024年2月14日 17:59

Very interesting blog. Alot of blogs I see these days don't really provide anything that I'm interested in, but I'm most definately interested in this one. Just thought that I would post and let you know.

먹튀검증사이트 说:
2024年2月14日 18:08

This is actually good to read the content of this blog. here is very general and the huge knowledgeable platform has been known by this blog. Kindly I share the most useful topic which is important for every user.

토토사이트추천 说:
2024年2月14日 18:08

I haven’t any word to appreciate this post.....Really i am impressed from this post....the person who create this post it was a great human..thanks for shared this with us.

토토먹튀검증 说:
2024年2月14日 18:51

I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well..

토토사이트 说:
2024年2月14日 18:56

I must say, this article is quite impressive and I genuinely appreciate the writer's effort in putting together such a valuable piece of work. The points made are undoubtedly valid and thought-provoking, and I commend them for their insightful perspective. The rest of the website is also incredibly well-done and showcases a true commitment to excellence. I wanted to take a moment to express my gratitude for sharing this informative post, and also recommend the Anomaloscope vision Test to anyone who may be struggling with color vision deficiencies. Thank you once again for this fantastic contribution and please keep up the outstanding work!

먹튀제보 说:
2024年2月14日 18:59

Very interesting, good job and thanks for sharing such a good blog. Your article is so convincing that I never stop myself to say something about it. You’re doing a great job. Keep it up,

เว็บไซต์ แทงบอลออนไล 说:
2024年2月14日 19:08

I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!

메이저안전놀이터 说:
2024年2月14日 19:35

Thank you because you have been willing to share information with us. we will always appreciate all you have done here. I also have something for you. you can gay test.

먹튀검증커뮤니티 说:
2024年2月14日 21:05

I read your article. Great information you provide. I never read stunning article like yours thanking you so much for the share such a outstanding information.

안전한카지노사이트 说:
2024年2月14日 21:14

Superb i really enjoyed very much with this article here. Really its a amazing article i had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article.thank you for sharing such a great blog with us. expecting for your updates on bin search.

토토사이트종류 说:
2024年2月14日 21:14

Thank you for your contributions to the community, and please continue to update us with your blog.I’ve got something equally dope to share about reaction time test that’ll blow your mind even more! So, check it out above and let me know what you think!

먹튀검증 说:
2024年2月14日 21:34

Hello, I have browsed most of your posts. This post is probably where I got the most useful information for my research. Thanks for posting, maybe we can see more on this. Are you aware of any other websites on this subject.

먹튀검증 说:
2024年2月14日 21:35

I am always searching online for storys that can accommodate me. There is obviously a multiple to understand about this. I feel you made few salubrious points in Attributes moreover. Detain busy, awesome career!

안전토토사이트 说:
2024年2月14日 21:43

You bear through a awesome vacancy. I sanity definitely quarry it moreover personally suggest to my buddys. I am self-possessed they determination be benefited from this scene.

안전사이트 说:
2024年2月14日 21:43

I have visit first time on your blog this is very nice and useful information for me. Thank you ! I have also shared some more information about.. this is very intresting topic you can visit on my blog reaction time test.

먹튀검증 说:
2024年2月14日 21:44

Embark on an exciting adventure as we delve into the enthralling story of Harley West. Beyond the powerful engines and iconic leather jackets, this exploration uncovers a distinctive lifestyle, a tight-knit community, and a legendary brand that has permanently reshaped the world of driving.

seo service UK 说:
2024年2月24日 16:57

You are really a very high talented singer!!! I really love your music!!


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter

| Theme: Aeros 2.0 by TheBuckmaker.com