Jump to content
c0saru

Salutari programatori ! :D

Recommended Posts

Imi poate face cineva o schema la limbajul de programare C++ incat sa pot intelege din ce e alcatuit si cum pot lucra cu el ? As vrea sa il inteleg schematic in prima parte sa stiu cum sa il invat :) Stiu ca sunt N posturi ... multumesc anticipat :)

Poti scrie linii de cod si sa le compactezi intr-un cuvant , iar cuvantul respectiv sa fie scris in alte linii de cod si sa execute liniile de cod care au fost compactate in cuvant ? :))) sper ca ma fac inteles :D

Edited by c0saru
Link to comment
Share on other sites

Reference Style - All Levels

A Tour of C++ (Bjarne Stroustrup) The "tour" is a quick (about 180 pages and 14 chapters) tutorial overview of all of standard C++ (language and standard library, and using C++11) at a moderately high level for people who already know C++ or at least are experienced programmers. This book is an extended version of the material that constitutes Chapters 2-5 of The C++ Programming Language, 4th edition.

The C++ Programming Language (Bjarne Stroustrup) (updated for C++11) The classic introduction to C++ by its creator. Written to parallel the classic K&R, this indeed reads very much alike it and covers just about everything from the core language to the standard library, to programming paradigms to the language's philosophy. (Thereby making the latest editions break the 1k page barrier.) [Review] The fourth edition (released on May 19, 2013) covers C++11.

C++ Standard Library Tutorial and Reference (Nicolai Josuttis) (updated for C++11) The introduction and reference for the C++ Standard Library. The second edition (released on April 9, 2012) covers C++11. [Review]

The C++ IO Streams and Locales (Angelika Langer and Klaus Kreft) There's very little to say about this book except that, if you want to know anything about streams and locales, then this is the one place to find definitive answers. [Review]

C++11 References:

The C++ Standard (INCITS/ISO/IEC 14882-2011) This, of course, is the final arbiter of all that is or isn't C++. Be aware, however, that it is intended purely as a reference for experienced users willing to devote considerable time and effort to its understanding. As usual, the first release was quite expensive ($300+ US), but it has now been released in electronic form for $60US

Overview of the New C++ (C++11/14) (PDF only) (Scott Meyers) (updated for C++1y/C++14) These are the presentation materials (slides and some lecture notes) of a three-day training course offered by Scott Meyers, who's a highly respected author on C++. Even though the list of items is short, the quality is high.

Beginner

Introductory

If you are new to programming or if you have experience in other languages and are new to C++, these books are highly recommended.

C++ Primer * (Stanley Lippman, Josée Lajoie, and Barbara E. Moo) (updated for C++11) Coming at 1k pages, this is a very thorough introduction into C++ that covers just about everything in the language in a very accessible format and in great detail. The fifth edition (released August 16, 2012) covers C++11. [Review]

Accelerated C++ (Andrew Koenig and Barbara Moo) This basically covers the same ground as the C++ Primer, but does so on a fourth of its space. This is largely because it does not attempt to be an introduction to programming, but an introduction to C++ for people who've previously programmed in some other language. It has a steeper learning curve, but, for those who can cope with this, it is a very compact introduction into the language. (Historically, it broke new ground by being the first beginner's book using a modern approach at teaching the language.) [Review]

Thinking in C++ (Bruce Eckel) Two volumes; second is more about standard library, but still very good

Programming: Principles and Practice Using C++ (Bjarne Stroustrup) (updated for C++11/C++14) An introduction to programming using C++ by the creator of the language. A good read, that assumes no previous programming experience, but is not only for beginners.

* Not to be confused with C++ Primer Plus (Stephen Prata), with a significantly less favorable review.

Best practices

Effective C++ (Scott Meyers) This was written with the aim of being the best second book C++ programmers should read, and it succeeded. Earlier editions were aimed at programmers coming from C, the third edition changes this and targets programmers coming from languages like Java. It presents ~50 easy-to-remember rules of thumb along with their rationale in a very accessible (and enjoyable) style. [Review]

Effective STL (Scott Meyers) This aims to do the same to the part of the standard library coming from the STL what Effective C++ did to the language as a whole: It presents rules of thumb along with their rationale. [Review]

Intermediate

More Effective C++ (Scott Meyers) Even more rules of thumb than Effective C++. Not as important as the ones in the first book, but still good to know.

Exceptional C++ (Herb Sutter) Presented as a set of puzzles, this has one of the best and thorough discussions of the proper resource management and exception safety in C++ through Resource Acquisition is Initialization (RAII) in addition to in-depth coverage of a variety of other topics including the pimpl idiom, name lookup, good class design, and the C++ memory model. [Review]

More Exceptional C++ (Herb Sutter) Covers additional exception safety topics not covered in Exceptional C++, in addition to discussion of effective object oriented programming in C++ and correct use of the STL. [Review]

Exceptional C++ Style (Herb Sutter) Discusses generic programming, optimization, and resource management; this book also has an excellent exposition of how to write modular code in C++ by using nonmember functions and the single responsibility principle. [Review]

C++ Coding Standards (Herb Sutter and Andrei Alexandrescu) "Coding standards" here doesn't mean "how many spaces should I indent my code?" This book contains 101 best practices, idioms, and common pitfalls that can help you to write correct, understandable, and efficient C++ code. [Review]

C++ Templates: The Complete Guide (David Vandevoorde and Nicolai M. Josuttis) This is the book about templates as they existed before C++11. It covers everything from the very basics to some of the most advanced template metaprogramming and explains every detail of how templates work (both conceptually and at how they are implemented) and discusses many common pitfalls. Has excellent summaries of the One Definition Rule (ODR) and overload resolution in the appendices. A second edition is scheduled for 2015. [Review]

Advanced

Modern C++ Design (Andrei Alexandrescu) A groundbreaking book on advanced generic programming techniques. Introduces policy-based design, type lists, and fundamental generic programming idioms then explains how many useful design patterns (including small object allocators, functors, factories, visitors, and multimethods) can be implemented efficiently, modularly, and cleanly using generic programming. [Review]

C++ Template Metaprogramming (David Abrahams and Aleksey Gurtovoy)

C++ Concurrency In Action (Anthony Williams) A book covering C++11 concurrency support including the thread library, the atomics library, the C++ memory model, locks and mutexes, as well as issues of designing and debugging multithreaded applications.

Advanced C++ Metaprogramming (Davide Di Gennaro) A pre-C++11 manual of TMP techniques, focused more on practice than theory. There are a ton of snippets in this book, some of which are made obsolete by typetraits, but the techniques, are nonetheless, useful to know. If you can put up with the quirky formatting/editing, it is easier to read than Alexandrescu, and arguably, more rewarding. For more experienced developers, there is a good chance that you may pick up something about a dark corner of C++ (a quirk) that usually only comes about through extensive experience.

Classics / Older

Note: Some information contained within these books may not be up-to-date or no longer considered best practice.

The Design and Evolution of C++ (Bjarne Stroustrup) If you want to know why the language is the way it is, this book is where you find answers. This covers everything before the standardization of C++.

Ruminations on C++ - (Andrew Koenig and Barbara Moo) [Review]

Advanced C++ Programming Styles and Idioms (James Coplien) A predecessor of the pattern movement, it describes many C++-specific "idioms". It's certainly a very good book and still worth a read if you can spare the time, but quite old and not up-to-date with current C++.

Large Scale C++ Software Design (John Lakos) Lakos explains techniques to manage very big C++ software projects. Certainly a good read, if it only was up to date. It was written long before C++98, and misses on many features (e.g. namespaces) important for large scale projects. If you need to work in a big C++ software project, you might want to read it, although you need to take more than a grain of salt with it. There's been the rumor that Lakos is writing an up-to-date edition of the book for years.

Inside the C++ Object Model (Stanley Lippman) If you want to know how virtual member functions are commonly implemented and how base objects are commonly laid out in memory in a multi-inheritance scenario, and how all this affects performance, this is where you will find thorough discussions of such topics.

Sursa:

c++ faq - The Definitive C++ Book Guide and List - Stack Overflow

O abordare didactica poti gasi aici:

http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-introduction-to-c-january-iap-2011/

P.S.

Foloseste butonul de edit si imbina cele doua posturi consecutive. Arunca o privire si peste regulamentul forumului:

https://rstforums.com/forum/59818-regulamentul-forumului-ro.rst

Edited by Ganav
Link to comment
Share on other sites

Imi poate face cineva o schema la limbajul de programare C++ incat sa pot intelege din ce e alcatuit si cum pot lucra cu el ? As vrea sa il inteleg schematic in prima parte sa stiu cum sa il invat :) Stiu ca sunt N posturi ... multumesc anticipat :)

Poti scrie linii de cod si sa le compactezi intr-un cuvant , iar cuvantul respectiv sa fie scris in alte linii de cod si sa execute liniile de cod care au fost compactate in cuvant ? :))) sper ca ma fac inteles :D

Dac? am în?eles bine, ce dore?ti tu s? faci pare a fi un interpretor, dac? respectivele linii de cod vrei s? fie execute în momentul acela. Dac? nu e asta atunci vrei s? faci un compilator care î?i transform? codul într-un alt cod al unui limbaj de programare care dispune de compilator ?i ulterior s? fie executat programul rezultat în urma compil?rii. Care din cele dou? variante?

Link to comment
Share on other sites

In principiu as vrea sa inteleg sintaxa limbajului C++ , ca nu prea o inteleg din cate m-am documentat , as vrea o schema ceva mai usoara incat sa o pot intelege , algoritimica , functii , pointerii nebunii :) ce fac toate astea :) as vrea un fel de dex pentru c ++ :))

Link to comment
Share on other sites

Fratilor pe scurt ma intereseaza cum se programeaza ? incepand cu inceputul in C++ :) , ce faci prima data , ce poti sa faci pe parcurs pana la partea cu compilatul , care e treaba cu clasele cu functiile ?:) ; nu ma intereseaza tutoriale , vreau sa imi explice cineva ca si cand ar face o revizie la o masina gen . Multumesc anticipat ! :D Sper ca nu par nerespectuos , am vrut doar sa ma fac inteles .

Link to comment
Share on other sites

Tu nu iti dai seama ca nu o sa stea nimeni sa-ti explice tie in mod special cum se programeaza?

Programarea se invata in modul greu. Nu exista reteta usoara pe care o cauti.

Scuze ca-ti distrug visele, dar nu exista. Mai ales in C++ sa cauti un mod usor. Verifica link-urile de la colegii de mai sus, e mult mai bine.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...