刷题之路
zyhmz
脂肪三尺,非一日之寒;码农功力,非斯须之作
展开
-
c++主项练习错题分析(1) const,this指针
链接:https://www.nowcoder.com/questionTerminal/948ac1254e3444bea5c29a0b21b5982f来源:牛客网下列哪两个是等同的 int b; 1.const int *a = &b; 2.const * int a = &b; 3.const int* const a = &b; 4.int const* co原创 2017-02-23 15:25:26 · 537 阅读 · 0 评论 -
c++主项练习错题分析(2) STL容器
链接:https://www.nowcoder.com/questionTerminal/1f452101c91a478b88f8081b9ba3150a来源:牛客网下面哪几种是 STL 容器类型()vectorsetmultivectormultisetarray正确答案:A B D EC++11 STL中的容器 一、顺序容器: vector:可变大小数组; deque:双端队原创 2017-02-24 15:10:19 · 2706 阅读 · 0 评论