Cargando…

Exploring C++ 11 : problems and solutions handbook /

Exploring C++ divides C++ up into bite-sized chunks that will help you learn the language one step at a time. Assuming no familiarity with C++, or any other C-based language, you'll be taught everything you need to know in a logical progression of small lessons that you can work through as quic...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Lischner, Ray (Autor)
Otros Autores: Buckingham, Ewan (Editor ), Ishchenko, Anna (Diseñador de portada)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: New York : Apress, 2013.
Edición:Second edition.
Colección:Expert's voice in C++.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Mi 4500
001 OR_ocn880449082
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 140428t20132013nyua of 001 0 eng d
040 |a E7B  |b eng  |e rda  |e pn  |c E7B  |d UMI  |d OCLCO  |d DEBBG  |d DEBSZ  |d IDEBK  |d CDX  |d OCLCF  |d EBLCP  |d OCLCQ  |d OCL  |d AZK  |d Z5A  |d MERUC  |d OCLCQ  |d VT2  |d CEF  |d OCLCQ  |d WYU  |d UAB  |d AU@  |d STF  |d OCLCQ  |d HS0  |d OCLCO  |d OCLCQ 
019 |a 878921900  |a 880826960  |a 881433067  |a 961544262  |a 1227641343 
020 |a 9781430261940  |q (e-book) 
020 |a 1430261943  |q (e-book) 
020 |a 1430261935 
020 |a 9781430261933 
020 |a 1306691869  |q (ebk) 
020 |a 9781306691864  |q (ebk) 
020 |z 9781430261933 
024 7 |a 10.1007/978-1-4302-6194-0  |2 doi 
029 1 |a CHNEW  |b 000900262 
029 1 |a CHVBK  |b 403401305 
029 1 |a DEBBG  |b BV042033148 
029 1 |a DEBBG  |b BV042987604 
029 1 |a DEBBG  |b BV043609425 
029 1 |a DEBSZ  |b 407738584 
029 1 |a DEBSZ  |b 414186346 
029 1 |a GBVCP  |b 882731513 
035 |a (OCoLC)880449082  |z (OCoLC)878921900  |z (OCoLC)880826960  |z (OCoLC)881433067  |z (OCoLC)961544262  |z (OCoLC)1227641343 
037 |a CL0500000448  |b Safari Books Online 
050 4 |a QA76.73.C15  |b .L573 2013eb 
072 7 |a UY  |2 bicssc 
072 7 |a COM014000  |2 bisacsh 
082 0 4 |a 001.6424  |2 23 
049 |a UAMI 
100 1 |a Lischner, Ray,  |e author. 
245 1 0 |a Exploring C++ 11 :  |b problems and solutions handbook /  |c Ray Lischner ; Ewan Buckingham, lead editor ; Anna Ishchenko, cover designer. 
250 |a Second edition. 
264 1 |a New York :  |b Apress,  |c 2013. 
264 4 |c ©2013 
300 |a 1 online resource (617 pages) :  |b illustrations (some color) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Expert's Voice in C++ 
500 |a "Learn C++ with Practical Hands-On Exercises"--Cover. 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (ebrary, viewed April 27, 2014). 
505 0 |a At a Glance; Introduction; EXPLORATION 1: Honing Your Tools; Ray's Recommendations; Microsoft Windows; Macintosh OS X; Everyone Else; Read the Documentation; Your First Program; EXPLORATION 2: Reading C++ Code; Comments; Headers; Main Program; Variable Definitions; Statements; Output; EXPLORATION 3: Integer Expressions; EXPLORATION 4: Strings; EXPLORATION 5: Simple Input; EXPLORATION 6: Error Messages; Misspelling; Bogus Character; Unknown Operator; Unknown Name; Symbol Errors; Fun with Errors; EXPLORATION 7: For Loops; Bounded Loops; Initialization; Condition; Postiteration. 
505 8 |a How a for Loop WorksYour Turn; EXPLORATION 8: Formatted Output; The Problem; Field Width; Fill Character; std Prefix; Alignment; Exploring Formatting; Alternative Syntax; On Your Own; EXPLORATION 9: Arrays and Vectors; Vectors for Arrays; Vectors; Iterators; EXPLORATION 10: Algorithms and Iterators; Algorithms; Member Types; A Simpler Loop; Using Iterators and Algorithms; EXPLORATION 11: Increment and Decrement; Increment; Decrement; EXPLORATION 12: Conditions and Logic; I/O and bool; Boolean Type; Logic Operators; Old-Fashioned Syntax; Comparison Operators. 
505 8 |a EXPLORATION 13: Compound StatementsStatements; Local Definitions and Scope; Definitions in for Loop Headers; EXPLORATION 14: Introduction to File I/O; Reading Files; Writing Files; EXPLORATION 15: The Map Data Structure; Using Maps; Pairs; Searching in Maps; EXPLORATION 16: Type Synonyms; typedef Declarations; Common typedefs; Type Aliases; EXPLORATION 17: Characters; Character Type; Character I/O; Newlines and Portability; Character Escapes; EXPLORATION 18: Character Categories; Character Sets; Character Categories; Locales; Exploration 19: Case-Folding; Simple Cases; Harder Cases. 
505 8 |a EXPLORATION 20: Writing FunctionsFunctions; Function Call; Declarations and Definitions; Counting Words-Again; The main() Function; EXPLORATION 21: Function Arguments; Argument Passing; Pass-by-Reference; const References; const_iterator; Multiple Output Parameters; Exploration 22: Using Algorithms; Transforming Data; Predicates; Other Algorithms; Exploration 23: Unnamed Functions; Lambdas; Naming an Unnamed Function; Capturing Local Variables; const Capture; Return Type; Exploration 24: Overloading Function Names; Overloading; bool is_alpha(char ch); bool is_alpha(std::string const & str). 
505 8 |a Char to_lower(char ch)std::string to_lower(std::string str); char to_upper(char ch); std::string to_upper(std::string str); Exploration 25: Big and Little Numbers; The Long and Short of It; Long Integers; Short Integers; Integer Literals; Byte-Sized Integers; Type Casting; Make Up Your Own Literals; Integer Arithmetic; Overload Resolution; Exploration 26: Very Big and Very Little Numbers; Floating-Point Numbers; Floating-Point Literals; Floating-Point Traits; Floating-Point I/O; Exploration 27: Documentation; Doxygen; Structured Comments; Documentation Tags and Markdown; @b word. 
520 |a Exploring C++ divides C++ up into bite-sized chunks that will help you learn the language one step at a time. Assuming no familiarity with C++, or any other C-based language, you'll be taught everything you need to know in a logical progression of small lessons that you can work through as quickly or as slowly as you need. C++ can be a complicated language. Writing even the most straight-forward of programs requires you to understand many disparate aspects of the language and how they interact with one another. C++ doesn't lend itself to neat compartmentalization the way other languages do. Rat. 
546 |a English. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a C++ (Computer program language)  |v Handbooks, manuals, etc. 
650 0 |a Object-oriented programming (Computer science) 
650 6 |a C++ (Langage de programmation)  |v Guides, manuels, etc. 
650 6 |a Programmation orientée objet (Informatique) 
650 7 |a C++ (Computer program language)  |2 fast  |0 (OCoLC)fst00843286 
650 7 |a Object-oriented programming (Computer science)  |2 fast  |0 (OCoLC)fst01042804 
655 7 |a Handbooks and manuals.  |2 fast  |0 (OCoLC)fst01423877 
700 1 |a Buckingham, Ewan,  |e editor. 
700 1 |a Ishchenko, Anna,  |e cover designer. 
776 0 8 |i Print version:  |a Lischner, Ray.  |t Exploring C++ 11 : problems and solutions handbook.  |b Second edition.  |d New York : Apress, ©2013  |h xxxii, 622 pages  |k Expert's voice in C++.  |z 9781430261933 
830 0 |a Expert's voice in C++. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781430261933/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Coutts Information Services  |b COUT  |n 28233641 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1694195 
938 |a ebrary  |b EBRY  |n ebr10845502 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28233641 
994 |a 92  |b IZTAP