摘要: Today is Monday, April 28. I get a telephone call from Morgan Stanley in Shanghai. My examiner is a man, whose English is good. By the way, he is a Ch... 阅读全文
posted @ 2014-06-05 10:42 ruccsbingo 阅读(406) 评论(0) 推荐(0) 编辑
摘要: static: (Page 406)In both C and C++ the keyword static has two basic meanings, which unfortunately often step on each other's toes.1 Allocated ... 阅读全文
posted @ 2014-05-26 21:42 ruccsbingo 阅读(148) 评论(0) 推荐(0) 编辑
摘要: Problems: (Page 372)There are two problems with the use of proprocessor macros in C++. The first is also with C: a macro looks like a function ca... 阅读全文
posted @ 2014-05-26 17:12 ruccsbingo 阅读(201) 评论(0) 推荐(0) 编辑
摘要: The first motivation for constseems to have been to eliminate the use of preprocessor #definefor value substitution. It has since been put to use for ... 阅读全文
posted @ 2014-05-07 15:50 ruccsbingo 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Why need initialization and cleanup?A large segment of C bugs occur when the programmer forgets to initialize or clean up a variable.The class designe... 阅读全文
posted @ 2014-05-07 14:39 ruccsbingo 阅读(179) 评论(0) 推荐(0) 编辑
摘要: The variables are guaranteed to be laid out contiguously, as in C. However, the access blocks may not appear in the object in the order that you decla... 阅读全文
posted @ 2014-04-30 20:09 ruccsbingo 阅读(141) 评论(0) 推荐(0) 编辑
摘要: What is an object? (Page 238)In C++, an object is just a variable, and the purest definition is "a region of storage" (this is a more specific way ... 阅读全文
posted @ 2014-04-30 19:40 ruccsbingo 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 4月24号下午,我去参加了北京赛门铁克公司的面试。在前一天下午,已经收到了一个简单的电话面试。电话面试的过程还是很轻松的,首先问了些简单的个人信息,然后面试官就在电话的那头看着我的简历开始提问题了,大部分的问题都是围绕着简历里面写的,你说你会什么,他就会集中的问这个方面的问题的。我的简历写的内容比较... 阅读全文
posted @ 2014-04-25 16:40 ruccsbingo 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1 unnamed arguments in the argument list of the function definition (Page 114)In c++, an argument may be unnamed in the argument list of the functi... 阅读全文
posted @ 2014-04-22 17:12 ruccsbingo 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1 Declarations VS definitions (Page 81) declarations: This function or variable exists somewhere, and here is what it should look like. definitions:... 阅读全文
posted @ 2014-04-22 10:55 ruccsbingo 阅读(126) 评论(0) 推荐(0) 编辑