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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Catching Up on C++?

12 点作者 netule超过 1 年前
Hi folks, up until 2013, I worked as a C++ developer but moved on to web technologies. In the last decade or so, the language and its features have moved on significantly; when I left, C++11 had barely made its way into compilers, so you could say I&#x27;m quite behind on the times.<p>This is probably a stretch, but since I want to get my feet wet in C++ again, is there some resource that could help me catch up on new features and things worth learning? I would love to avoid reading through reams of standards, but if that&#x27;s it, that&#x27;s it.<p>Many thanks in advance.

3 条评论

LorenDB超过 1 年前
Read through <a href="https:&#x2F;&#x2F;www.learncpp.com" rel="nofollow">https:&#x2F;&#x2F;www.learncpp.com</a>. You&#x27;ll get a complete refresher on the language, but it will be using modern C++ stuff (modern in this case means C++17).<p>For C++20 and newer, honestly, the only big feature that I ever use is concepts, although I do also use the new struct initialization syntax[0].<p>[0]: <a href="https:&#x2F;&#x2F;www.cppstories.com&#x2F;2021&#x2F;designated-init-cpp20&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.cppstories.com&#x2F;2021&#x2F;designated-init-cpp20&#x2F;</a>
评论 #39459905 未加载
评论 #39463606 未加载
评论 #39438082 未加载
stefanos82超过 1 年前
Just go through this <a href="https:&#x2F;&#x2F;github.com&#x2F;AnthonyCalandra&#x2F;modern-cpp-features">https:&#x2F;&#x2F;github.com&#x2F;AnthonyCalandra&#x2F;modern-cpp-features</a> and you should be fine.<p>If you also like thorough explanations and graphs, there&#x27;s <a href="https:&#x2F;&#x2F;hackingcpp.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hackingcpp.com&#x2F;</a> that could answer many questions you might have.<p>By the way, just in case, bookmark this online C++ reference <a href="https:&#x2F;&#x2F;eel.is&#x2F;c++draft&#x2F;" rel="nofollow">https:&#x2F;&#x2F;eel.is&#x2F;c++draft&#x2F;</a> for diving in deep waters.<p>Good luck!
pjmlp超过 1 年前
Tour of C++ 3rd Edition [0] would be a good start.<p>[0] - <a href="https:&#x2F;&#x2F;www.stroustrup.com&#x2F;tour3.html" rel="nofollow">https:&#x2F;&#x2F;www.stroustrup.com&#x2F;tour3.html</a>