TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

C++ Language Quick Guide

58 pointsby TheVipabout 8 years ago

9 comments

copperxabout 8 years ago
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 未加载
bstamourabout 8 years ago
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 未加载
Cieplakabout 8 years ago
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>
GhostVIIabout 8 years ago
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.
alexeizabout 8 years ago
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.
minipci1321about 8 years ago
&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 未加载
bltabout 8 years ago
This looks more like an exam review study guide than an attempt to teach the language.
PopsiclePeteabout 8 years ago
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.
dotdiabout 8 years ago
Call me nitpicky, but you lost me at `Box Box1;`<p>Instance names should be lowercase, for God&#x27;s sake.