TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

C++ Language Quick Guide

58 点作者 TheVip大约 8 年前

9 条评论

copperx大约 8 年前
I just want to point out that Stroustrup's A Tour Of C++ is an excellent quick guide and it does include C++11 features.
评论 #14258654 未加载
bstamour大约 8 年前
Please update the section on storage classes. Auto is no longer a storage class, but a keyword for automatic type deduction. Also, register has recently been deprecated as well, if I remember correctly.
评论 #14258240 未加载
Cieplak大约 8 年前
Another cool resource:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;rigtorp&#x2F;awesome-modern-cpp" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rigtorp&#x2F;awesome-modern-cpp</a>
GhostVII大约 8 年前
Does this guide have anything about references? Didn&#x27;t find anything about that, but maybe I missed it, I think its a pretty important topic to cover. Also didn&#x27;t see anything about the different types of constructors.
alexeiz大约 8 年前
This guide is so primitive that it cannot be called useful. It can possibly be harmful, though, to those who don&#x27;t know the language well and use this guide as a sole source of information.
minipci1321大约 8 年前
&gt; C++ is a superset of C, and that virtually any legal C program is a legal C++ program.<p>This is not true. One example, void* pointers are not automatically converted to &quot;narrower&quot; types in C++ as they are in C.
评论 #14262443 未加载
评论 #14259458 未加载
blt大约 8 年前
This looks more like an exam review study guide than an attempt to teach the language.
PopsiclePete大约 8 年前
This is kind of ... crappy. Sorry. It might have been semi-useful in 2004 or so, but now...woefully outdated and inadequate to get anyone up-to-speed. I&#x27;d say it&#x27;s actually harmful.
dotdi大约 8 年前
Call me nitpicky, but you lost me at `Box Box1;`<p>Instance names should be lowercase, for God&#x27;s sake.