C++模板和工厂
我已经使用 C++ 几年了,并且希望能够熟练使用 和工厂。是否有一些很好的网络教程和/或教科书可以很好地涵盖这一点?
我在广泛使用“模式”一词(80 年代)之前就开始编程......但是当我第一次看到这个术语时,我认识到了它的用法的“模式”。各种有用模式的良好参考/资源对我也很有用。
谢谢!
I've been playing with C++ for a few years now, and want to become adept at using
and factories. Are there some good web tutorials and/or textbooks that cover this well?
I started programming prior to the wide use of the term "patterns" ('80's)... but when I first saw the term I recognized the "pattern" of it's usage. A good reference/resource for various useful patterns would also be useful to me as well.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读 Herb Sutter 的书籍,例如 Exceptional C++ 或 C++ Coding Standards,
Scott Meyers 的书籍,例如 Effective C++。
对于不同的模式,阅读四人帮(Gamma、Helm、Johnson、Vlissides)的设计模式,James O. Coplien 的高级 C++ 编程风格和习惯用法也不错。
如果您想更深入地了解元编程,请阅读 Andrei Alexandrescu 的现代 C++ 设计。
Read books of Herb Sutter like Exceptional C++ or C++ Coding Standards,
books from Scott Meyers, like Effective C++.
For different patterns read Design Patterns by the Gang of four (Gamma, Helm, Johnson, Vlissides), the Advanced C++ Programming Styles and Idioms by James O. Coplien is also good.
If you want to go deeper - like metaprogramming, take the Modern C++ Design by Andrei Alexandrescu.
此论坛帖子中的链接将对您有很大帮助:
论坛帖子
The links in this forum post will help you a ton:
Forum Post
您是指 C++ 模板和设计模式的书吗?
然后,我的选择:
Josuttis
模式
Do you mean book for C++ Templates and Design patterns ?
Then, my choice:
Complete Guide by Josuttis
patterns