C und C++: [Programmierung und Referenz]
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | German |
Veröffentlicht: |
Haar bei München
Markt & Technik, Buch- und Software-Verl.
1997
|
Ausgabe: | [Nachdr.] |
Schriftenreihe: | Schnellübersicht
|
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | 589 S. |
ISBN: | 3827250668 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV011933453 | ||
003 | DE-604 | ||
005 | 19980911 | ||
007 | t | ||
008 | 980505s1997 gw |||| 00||| ger d | ||
016 | 7 | |a 953461564 |2 DE-101 | |
020 | |a 3827250668 |9 3-8272-5066-8 | ||
035 | |a (OCoLC)613644721 | ||
035 | |a (DE-599)BVBBV011933453 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a ger | |
044 | |a gw |c DE | ||
049 | |a DE-29 | ||
084 | |a ST 250 |0 (DE-625)143626: |2 rvk | ||
100 | 1 | |a Louis, Dirk |d 1965- |e Verfasser |0 (DE-588)115650849 |4 aut | |
245 | 1 | 0 | |a C und C++ |b [Programmierung und Referenz] |c Dirk Louis |
250 | |a [Nachdr.] | ||
264 | 1 | |a Haar bei München |b Markt & Technik, Buch- und Software-Verl. |c 1997 | |
300 | |a 589 S. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
490 | 0 | |a Schnellübersicht | |
650 | 0 | 7 | |a C |g Programmiersprache |0 (DE-588)4113195-2 |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 |g Programmiersprache |0 (DE-588)4113195-2 |D s |
689 | 0 | |5 DE-604 | |
689 | 1 | 0 | |a C++ |0 (DE-588)4193909-8 |D s |
689 | 1 | |5 DE-604 | |
856 | 4 | 2 | |m DNB Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=008066500&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-008066500 |
Datensatz im Suchindex
_version_ | 1807229682278465536 |
---|---|
adam_text |
INHALTSVERZEICHNIS
WAS
FINDEN
SIE
IN
DIESER
SCHNELLUEBERSICHT?
5
TIPS
ZUR
SCHNELLUEBERSICHT:
5
TABELLENUEBERSICHT
9
VORWORT
11
ARBEITEN
MIT
DER
SCHNELLUEBERSICHT
C/C++
13
SCHREIBWEISEN
UND
SYNTAXDARSTELLUNG
16
1
C,
C++
UND
DER
ANSI-STANDARD
18
1.1
DIE
PROGRAMMIERSPRACHEN
C
UND
C++
18
1.2
LEISTUNGSMERKMALE
20
1.3
DER
ANSI-STANDARD
21
1.4
AUFBAU
EINES
C-PROGRAMMS
24
1.5
PROGRAMMFLUSS
29
1.6
PROGRAMMERSTELLUNG
30
1.7
OBJEKTORIENTIERTES
PROGRAMMIEREN
32
1.8
BEGRIFFSVEREINBARUNGEN
34
2
VARIABLEN
UND
DATENTYPEN
38
2.1
VARIABLEN
UND
DATENTYPEN
38
2.2
DEFINITION
UND
DEKLARATION
41
2.3
ELEMENTARE
DATENTYPEN 43
2.4
AUFZAEHLUNGSTYPEN
51
2.5
ARRAYS
53
2.6
STRUKTUREN
60
2.7
BITFELDER
63
2.8
UNIONS
65
2.9
ZEIGER
67
2.10
REFERENZEN
(NUR
C++)
80
2.11
GUELTIGKEITSBEREICHE
UND
SICHTBARKEIT
83
2.12
SONSTIGE
SPEZIFIZIERER
92
2.13
EIGENE
DATENTYPEN
DEFINIEREN
95
3
OPERATOREN
96
3.1
VORZEICHEN
100
3.2
ARITHMETISCHE
OPERATOREN
101
3.3
ZUWEISUNGEN
102
3.4
VERGLEICHENDE
OPERATOREN 104
3.5
LOGISCHE
OPERATOREN
105
3.6
DATENZUGRIFF
108
3.7
BITWEISE
OPERATOREN
114
3.8
DIE
OPERATOREN
NEW
UND
DELETE
117
3.9
VERSCHIEDENE
OPERATOREN
121
3.10
SYNONYME
126
3.11
OPERATOREN
FUER
DEN
PRAEPROZESSOR
127
3.12
TYPENUMWANDLUNG
128
3.13
PRIORITAET
UND
ASSOZIATIVITAET
135
3.14
UEBERLADUNG
VON
OPERATOREN
137
4
ABLAUFSTEUERUNG,
PRAEPROZESSOR,
EXCEPTIONS
144
4.1
VERZWEIGUNGEN
UND
SCHLEIFEN
145
4.2
DER
PRAEPROZESSOR
157
4.3
EXCEPTION-BEHANDLUNG
169
5
FUNKTIONEN
UND
PROGRAMMENTWICKLUNG
176
5.1
FUNKTIONSDEKLARATION
UND
-DEFINITION
178
5.2
VERALTETE
DEKLARATIONEN
(PROTOTYPEN)
181
5.3
DIE
FUNKTION
MAINQ
182
5.4
DATENAUSTAUSCH
ZWISCHEN
FUNKTIONEN
184
5.5
FUNKTIONEN
UND
DER
STACK
189
5.6
BESONDERE
FUNKTIONEN
191
5.7
SPEZIFIZIERER
FUER
FUNKTIONEN
196
5.8
UEBERLADUNG
VON
FUNKTIONEN
197
5.9
MODULARES
PROGRAMMIEREN
UND
FUNKTIONEN
201
5.10
EIGENE
BIBLIOTHEKEN
205
6
KLASSEN
208
6.1
KLASSEN
UND
OOP
210
6.2
DATENELEMENTE
212
6.3
METHODEN
217
6.4
ZUGRIFFSSPEZIFIZIERER
220
6.5
ZUGRIFF
AUF
KLASSENELEMENTE
221
6.6
DER
KONSTRUKTOR
1TJ
6.7
DER
DESTRUKTOR
229
6.8
BESONDERE
METHODEN
230
6.9
DER
THIS-ZEIGER
235
6.10
INSTANZBILDUNG
236
7
VERERBUNG
UND
POLYMORPHISMUS
237
7.1
SYNTAX
EINER
VERERBUNG
240
7.2
ZUGRIFFSBESCHRAENKUNG
BEI
DER
VERERBUNG
241
7.3
VERERBUNG
UND
KONSTRUKTOR
243
7.4
POLYMORPHISMUS
246
7.5
ABSTRAKTE
METHODEN
UND
KLASSEN
250
7.6
BASISKLASSENZEIGER
251
7.7
MEHRFACHVERERBUNG
254
8
TEMPLATES
258
8.1
FUNKTIONENTEMPLATES
259
8.2
KLASSENTEMPLATES
260
8.3
INSTANZBILDUNG
UND
SPEZIALISIERUNG
263
9
C-LAUFZEITBIBLIOTHEK
268
9.1
DIE
FUNKTIONEN
NACH
HEADER-DATEIEN
268
9.2
BESCHREIBUNG
DER
FUNKTIONEN
295
10
LAUFZEITBIBLIOTHEK:
KLASSEN
356
10.1
ALLGEMEINES
356
10.2
DIE
KLASSEN
NACH
HEADER-DATEIEN
359
10.3
DIE
CONTAINER-KLASSEN
389
10.4
DIE
ITERATOREN-KLASSEN
434
10.5
DIE
ALGORITHMEN
452
10.6
DIE
STREAM-KLASSEN
481
10.7
DIE
STRING-KLASSEN
526
10.8
DIE
KLASSEN
ZUR
LOKALEN
EINSTELLUNG
546
10.9
DIE
MATHEMATISCHEN
KLASSEN
588
10.10
DIE
DIAGNOSE-KLASSEN
605
10.11
FUNKTIONSOBJEKTE
UND
UTILITY-KLASSEN
615
A
C,
C++
UND
DER
ANSI-STANDARD
631
A.1
SPEICHERMODELLE
(16-BIT)
631
A.2
KONVERTIERUNGEN
634
A.3
ERWEITERUNGEN
VON
C
ZU
C++
635
A.4
ASSEMBLER
636
A.5
TABELLEN
637
STICHWORTVERZEICHNIS
641 |
any_adam_object | 1 |
author | Louis, Dirk 1965- |
author_GND | (DE-588)115650849 |
author_facet | Louis, Dirk 1965- |
author_role | aut |
author_sort | Louis, Dirk 1965- |
author_variant | d l dl |
building | Verbundindex |
bvnumber | BV011933453 |
classification_rvk | ST 250 |
ctrlnum | (OCoLC)613644721 (DE-599)BVBBV011933453 |
discipline | Informatik |
edition | [Nachdr.] |
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">BV011933453</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">19980911</controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">980505s1997 gw |||| 00||| ger d</controlfield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">953461564</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">3827250668</subfield><subfield code="9">3-8272-5066-8</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)613644721</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV011933453</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">ger</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">gw</subfield><subfield code="c">DE</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-29</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="100" ind1="1" ind2=" "><subfield code="a">Louis, Dirk</subfield><subfield code="d">1965-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)115650849</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">C und C++</subfield><subfield code="b">[Programmierung und Referenz]</subfield><subfield code="c">Dirk Louis</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">[Nachdr.]</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Haar bei München</subfield><subfield code="b">Markt & Technik, Buch- und Software-Verl.</subfield><subfield code="c">1997</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">589 S.</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="490" ind1="0" ind2=" "><subfield code="a">Schnellübersicht</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">C</subfield><subfield code="g">Programmiersprache</subfield><subfield code="0">(DE-588)4113195-2</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="g">Programmiersprache</subfield><subfield code="0">(DE-588)4113195-2</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="689" ind1="1" 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="1" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">DNB Datenaustausch</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=008066500&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-008066500</subfield></datafield></record></collection> |
id | DE-604.BV011933453 |
illustrated | Not Illustrated |
indexdate | 2024-08-13T00:22:10Z |
institution | BVB |
isbn | 3827250668 |
language | German |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-008066500 |
oclc_num | 613644721 |
open_access_boolean | |
owner | DE-29 |
owner_facet | DE-29 |
physical | 589 S. |
publishDate | 1997 |
publishDateSearch | 1997 |
publishDateSort | 1997 |
publisher | Markt & Technik, Buch- und Software-Verl. |
record_format | marc |
series2 | Schnellübersicht |
spelling | Louis, Dirk 1965- Verfasser (DE-588)115650849 aut C und C++ [Programmierung und Referenz] Dirk Louis [Nachdr.] Haar bei München Markt & Technik, Buch- und Software-Verl. 1997 589 S. txt rdacontent n rdamedia nc rdacarrier Schnellübersicht C Programmiersprache (DE-588)4113195-2 gnd rswk-swf C++ (DE-588)4193909-8 gnd rswk-swf C Programmiersprache (DE-588)4113195-2 s DE-604 C++ (DE-588)4193909-8 s DNB Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=008066500&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Louis, Dirk 1965- C und C++ [Programmierung und Referenz] C Programmiersprache (DE-588)4113195-2 gnd C++ (DE-588)4193909-8 gnd |
subject_GND | (DE-588)4113195-2 (DE-588)4193909-8 |
title | C und C++ [Programmierung und Referenz] |
title_auth | C und C++ [Programmierung und Referenz] |
title_exact_search | C und C++ [Programmierung und Referenz] |
title_full | C und C++ [Programmierung und Referenz] Dirk Louis |
title_fullStr | C und C++ [Programmierung und Referenz] Dirk Louis |
title_full_unstemmed | C und C++ [Programmierung und Referenz] Dirk Louis |
title_short | C und C++ |
title_sort | c und c programmierung und referenz |
title_sub | [Programmierung und Referenz] |
topic | C Programmiersprache (DE-588)4113195-2 gnd C++ (DE-588)4193909-8 gnd |
topic_facet | C Programmiersprache C++ |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=008066500&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT louisdirk cundcprogrammierungundreferenz |