c++的高级编程是什么?

来源:百度知道 编辑:UC知道 时间:2024/05/24 09:50:46

1.快速入门
  〈Accelerated.C++〉2000
  〈Essential C++〉2002 Lipman
  两本都是开篇就讲C++/STL,绝口不提C,而且都有中文版。

  2.枕头参考
  〈C++.Primer.4th〉2005 Lippman,第3版有中文版,当入门书看也无不可。
  〈The.C++.Programming.Language.3rd〉Bjarne Stroustrup ,简称TCPL。

  3.专门书籍
  STL参考:〈The.C++.Standard.Library-A.Tutorial.And.Reference〉1999
  号称最好的STL参考,但我觉得很像JDK文档。

  Boost 参考:〈Beyond the C++ Standard Library - An Introduction to Boost〉2005
  介绍了Boost的一些重要类库,但其余的还是要看Boost自带文档。

  C++ Template参考:〈C++ Templates - The Complete Guide〉2002
  对template讲得相当深,无愧于The Complete Guide的书名,ytam说可以作为MCD的前传和续集。

  〈C++ Common Knowledge〉 中文版, Stephen C. Dewhurst
  跑杯茶怡然的看看C++里面那些值得吹嘘的知识点是个不错的场景。

  4.Effective 类
  Herb Sutter, Andrei Alexandrescu合著一本:
  〈C++.Coding.Standards - 101.Rules.Guidelines〉2004

  Meyers的三本Effecive:
  〈Effective C++ 3rd〉 2005
  〈More Effective C++〉
  〈Effective.STL.50.Specific.Ways.t