Effective modern C++: [42 specific ways to improve your use of C++11 and C++14]
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Beijing [u.a.]
O'Reilly
2015
|
Ausgabe: | 1. ed. |
Schlagworte: | |
Online-Zugang: | Inhaltstext Inhaltsverzeichnis |
Beschreibung: | Hier auch später erschienene, unveränderte Nachdrucke |
Beschreibung: | XV, 315 S. graph. Darst. |
ISBN: | 9781491903995 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV042274587 | ||
003 | DE-604 | ||
005 | 20220429 | ||
007 | t | ||
008 | 150116s2015 d||| |||| 00||| eng d | ||
015 | |a 14N36 |2 dnb | ||
016 | 7 | |a 105779841X |2 DE-101 | |
020 | |a 9781491903995 |c Pb. : EUR 41.00 (DE) |9 978-1-491-90399-5 | ||
035 | |a (OCoLC)900940105 | ||
035 | |a (DE-599)DNB105779841X | ||
040 | |a DE-604 |b ger | ||
041 | 0 | |a eng | |
049 | |a DE-898 |a DE-11 |a DE-20 |a DE-1050 |a DE-573 |a DE-19 |a DE-B768 |a DE-29T |a DE-83 |a DE-M347 |a DE-859 |a DE-355 |a DE-703 |a DE-91G |a DE-92 |a DE-861 |a DE-523 |a DE-634 |a DE-188 |a DE-862 |a DE-739 | ||
082 | 0 | |a 005.13/3 |2 23 | |
084 | |a ST 250 |0 (DE-625)143626: |2 rvk | ||
084 | |a 68N15 |2 msc | ||
084 | |a DAT 358f |2 stub | ||
100 | 1 | |a Meyers, Scott |d 1959- |e Verfasser |0 (DE-588)113101856 |4 aut | |
245 | 1 | 0 | |a Effective modern C++ |b [42 specific ways to improve your use of C++11 and C++14] |c Scott Meyers |
250 | |a 1. ed. | ||
264 | 1 | |a Beijing [u.a.] |b O'Reilly |c 2015 | |
300 | |a XV, 315 S. |b graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
500 | |a Hier auch später erschienene, unveränderte Nachdrucke | ||
650 | 0 | 7 | |a C++14 |0 (DE-588)1056920483 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a C++11 |0 (DE-588)7847900-9 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a C++ |0 (DE-588)4193909-8 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a C++ |0 (DE-588)4193909-8 |D s |
689 | 0 | 1 | |a C++11 |0 (DE-588)7847900-9 |D s |
689 | 0 | 2 | |a C++14 |0 (DE-588)1056920483 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | |q text/html |u http://deposit.dnb.de/cgi-bin/dokserv?id=4764465&prov=M&dok_var=1&dok_ext=htm |3 Inhaltstext | |
856 | 4 | 2 | |m Digitalisierung UB Passau - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027712085&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-027712085 |
Datensatz im Suchindex
DE-BY-862_location | 2000 2350 |
---|---|
DE-BY-FWS_call_number | 2000/ST 250 C01 M613 E2 2350/ST 250 C01 M613 |
DE-BY-FWS_katkey | 652985 |
DE-BY-FWS_media_number | 083000516657 083000521665 |
_version_ | 1806527646078599168 |
adam_text |
Table of Contents From the Publisher. xi Acknowledgments. xiii Introduction. 1 1. Deducing Types. Itemi: Understand template type deduction. Item 2: Understand auto type deduction. Item 3: Understand decltype. Item 4: Know how to view deduced types. 9 9 18 23 30 2. auto. 37 Item 5: Prefer auto to explicit type declarations. 37 Item 6: Use the explicitly typed initializer idiom when auto deduces undesired types. 43 3. Moving to Modern C++. Item 7: Distinguish between ( ) and {} when creating objects. Item 8: Prefer nuUptr to 0 and NULL. Item 9: Prefer alias declarations to typedefs. Item 10: Prefer scoped enums to unscoped enums. Item 11: Prefer deleted functions to private undefined ones. Item 12: Declare overriding functions override. Item 13: Prefer const_iterators to iterators. Item 14: Declare functions noexcept if they won’t emit exceptions. Item 15: Use constexpr whenever possible. 49 49 58 63 67 74 79 86 90 97 vii
Item 16: Make const member functions thread safe. Item 17: Understand special member function generation. 103 109 4. Smart Pointers. 117 Item 18: Use std : : unique_ptr for exclusive-ownership resource management. Item 19: Use std: : shared_ptr for shared-ownership resource management. Item 20: Use std : :weak_ptr for std : : shared_ptr-like pointers that can dangle. Item 21: Prefer std: :make_unlque and std: :nake_shared to direct use of new. Item 22: When using the Pimpi Idiom, define special member functions in the implementation file. 118 125 Item 40: Use std : : atonic for concurrency, volatile for special memory. 271 8. Tweaks. 281 Item 41: Consider pass by value for copyable parameters that are cheap to move and always copied. Item 42: Consider emplacement instead of insertion. 281 292 Index. 303 134 139 147 5. Rvalue References, Move Semantics, and Perfect Forwarding. 157 Item 23: Understand std: ¡move and std: ¡forward. Item 24: Distinguish universal references from rvalue references. Item 25: Use std : : move on rvalue references, std : : forward on universal references. Item 26: Avoid overloading on universal references. Item 27: Familiarize yourself with alternatives to overloading on universal references. Item 28: Understand reference collapsing. Item 29:
Assume that move operations are not present, not cheap, and not used. Item 30: Familiarize yourself with perfect forwarding failure cases. 158 164 168 177 184 197 203 207 6. Lambda Expressions. 215 Item 31: Item 32: Item 33: Item 34: Avoid default capture modes. Use init capture to move objects into closures. Use decltype on auto parameters to std: ¡forward them. Prefer lambdas to std : : bind. 216 224 229 232 7. The Concurrency API. 241 Item 35: Item 36: Item 37: Item 38: Item 39: viii I Prefer task-based programming tothread-based. Specify std : : launch : : async if asynchronicity is essential. Make std: ¡threads unjoinable on all paths. Be aware of varying thread handle destructor behavior. Consider void futures for one-shot event communication. Table of Contents 241 245 250 258 262 Table of Contents | ix |
any_adam_object | 1 |
author | Meyers, Scott 1959- |
author_GND | (DE-588)113101856 |
author_facet | Meyers, Scott 1959- |
author_role | aut |
author_sort | Meyers, Scott 1959- |
author_variant | s m sm |
building | Verbundindex |
bvnumber | BV042274587 |
classification_rvk | ST 250 |
classification_tum | DAT 358f |
ctrlnum | (OCoLC)900940105 (DE-599)DNB105779841X |
dewey-full | 005.13/3 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.13/3 |
dewey-search | 005.13/3 |
dewey-sort | 15.13 13 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | 1. ed. |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>00000nam a2200000 c 4500</leader><controlfield tag="001">BV042274587</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20220429</controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">150116s2015 d||| |||| 00||| eng d</controlfield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">14N36</subfield><subfield code="2">dnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">105779841X</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781491903995</subfield><subfield code="c">Pb. : EUR 41.00 (DE)</subfield><subfield code="9">978-1-491-90399-5</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)900940105</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB105779841X</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-898</subfield><subfield code="a">DE-11</subfield><subfield code="a">DE-20</subfield><subfield code="a">DE-1050</subfield><subfield code="a">DE-573</subfield><subfield code="a">DE-19</subfield><subfield code="a">DE-B768</subfield><subfield code="a">DE-29T</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-M347</subfield><subfield code="a">DE-859</subfield><subfield code="a">DE-355</subfield><subfield code="a">DE-703</subfield><subfield code="a">DE-91G</subfield><subfield code="a">DE-92</subfield><subfield code="a">DE-861</subfield><subfield code="a">DE-523</subfield><subfield code="a">DE-634</subfield><subfield code="a">DE-188</subfield><subfield code="a">DE-862</subfield><subfield code="a">DE-739</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">005.13/3</subfield><subfield code="2">23</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 250</subfield><subfield code="0">(DE-625)143626:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">68N15</subfield><subfield code="2">msc</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 358f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Meyers, Scott</subfield><subfield code="d">1959-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)113101856</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Effective modern C++</subfield><subfield code="b">[42 specific ways to improve your use of C++11 and C++14]</subfield><subfield code="c">Scott Meyers</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">1. ed.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Beijing [u.a.]</subfield><subfield code="b">O'Reilly</subfield><subfield code="c">2015</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XV, 315 S.</subfield><subfield code="b">graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Hier auch später erschienene, unveränderte Nachdrucke</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">C++14</subfield><subfield code="0">(DE-588)1056920483</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">C++11</subfield><subfield code="0">(DE-588)7847900-9</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">C++</subfield><subfield code="0">(DE-588)4193909-8</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">C++</subfield><subfield code="0">(DE-588)4193909-8</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="1"><subfield code="a">C++11</subfield><subfield code="0">(DE-588)7847900-9</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="2"><subfield code="a">C++14</subfield><subfield code="0">(DE-588)1056920483</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2=" "><subfield code="q">text/html</subfield><subfield code="u">http://deposit.dnb.de/cgi-bin/dokserv?id=4764465&prov=M&dok_var=1&dok_ext=htm</subfield><subfield code="3">Inhaltstext</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Passau - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027712085&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-027712085</subfield></datafield></record></collection> |
id | DE-604.BV042274587 |
illustrated | Illustrated |
indexdate | 2024-08-05T08:23:37Z |
institution | BVB |
isbn | 9781491903995 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-027712085 |
oclc_num | 900940105 |
open_access_boolean | |
owner | DE-898 DE-BY-UBR DE-11 DE-20 DE-1050 DE-573 DE-19 DE-BY-UBM DE-B768 DE-29T DE-83 DE-M347 DE-859 DE-355 DE-BY-UBR DE-703 DE-91G DE-BY-TUM DE-92 DE-861 DE-523 DE-634 DE-188 DE-862 DE-BY-FWS DE-739 |
owner_facet | DE-898 DE-BY-UBR DE-11 DE-20 DE-1050 DE-573 DE-19 DE-BY-UBM DE-B768 DE-29T DE-83 DE-M347 DE-859 DE-355 DE-BY-UBR DE-703 DE-91G DE-BY-TUM DE-92 DE-861 DE-523 DE-634 DE-188 DE-862 DE-BY-FWS DE-739 |
physical | XV, 315 S. graph. Darst. |
publishDate | 2015 |
publishDateSearch | 2015 |
publishDateSort | 2015 |
publisher | O'Reilly |
record_format | marc |
spellingShingle | Meyers, Scott 1959- Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] C++14 (DE-588)1056920483 gnd C++11 (DE-588)7847900-9 gnd C++ (DE-588)4193909-8 gnd |
subject_GND | (DE-588)1056920483 (DE-588)7847900-9 (DE-588)4193909-8 |
title | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] |
title_auth | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] |
title_exact_search | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] |
title_full | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] Scott Meyers |
title_fullStr | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] Scott Meyers |
title_full_unstemmed | Effective modern C++ [42 specific ways to improve your use of C++11 and C++14] Scott Meyers |
title_short | Effective modern C++ |
title_sort | effective modern c 42 specific ways to improve your use of c 11 and c 14 |
title_sub | [42 specific ways to improve your use of C++11 and C++14] |
topic | C++14 (DE-588)1056920483 gnd C++11 (DE-588)7847900-9 gnd C++ (DE-588)4193909-8 gnd |
topic_facet | C++14 C++11 C++ |
url | http://deposit.dnb.de/cgi-bin/dokserv?id=4764465&prov=M&dok_var=1&dok_ext=htm http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027712085&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT meyersscott effectivemodernc42specificwaystoimproveyouruseofc11andc14 |
Beschreibung
THWS Schweinfurt Zentralbibliothek Lesesaal
Signatur: |
2000 ST 250 C01 M613 E2 |
---|---|
Exemplar 1 | ausleihbar Verfügbar Bestellen |
THWS Schweinfurt Teilbibliothek Logistik
Signatur: |
2350 ST 250 C01 M613 |
---|---|
Exemplar 1 | nicht ausleihbar Verfügbar Bestellen |