Jump to content

C++: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
BotKung (talk | contribs)
m robot Modifying: th:C
Jutiphan (talk | contribs)
Reverted to revision 276874502 by Tedickey; revert problematic edit in BotKung, trying to fix problem.... (TW)
Line 1: Line 1:
:''"CXX" redirects here. It can also refer to [[120]] in [[Roman numerals]].''
{{pp-semi-indef|small=yes|expiry=February 16, 2009}}
{{Infobox programming language
{{otherusesof}}
| name = C++
{{dablink|For [[Wikipedia:Naming conventions (technical restrictions)#Characters totally forbidden in page titles|technical reasons]], C# redirects here. For uses of C#, see [[C-sharp]].}}
| logo = [[File:C_plus_plus_book.jpg]]
{{wiktionarypar2|C|c}}
| caption = ''[[The C++ Programming Language]]'', written by its architect, is the seminal book on the language.
{{Latin alphabet navbox|uc=C|lc=c}}
| paradigm = [[Multi-paradigm programming language|Multi-paradigm]]: [[procedural programming|procedural]], [[object-oriented programming|object-oriented]], [[generic programming|generic]]
[[Image:Copyright.svg|thumb|float|right|100px|'''C''' in [[copyright symbol]]]]
| year = 1983
'''C''' is the third [[Letter (alphabet)|letter]] in the [[Latin alphabet]]. Its name in [[English language|English]] is spelled '''cee''' ({{pronEng|siː}}), plural '''cees'''.<ref>"C" ''Oxford English Dictionary,'' 2nd edition (1989); ''Merriam-Webster's Third New International Dictionary of the English Language, Unabridged'' (1993); "cee", ''op. cit.''</ref>
| designer = [[Bjarne Stroustrup]]
| developer =
| latest_release_version =
| latest_release_date =
| latest_test_version =
| latest_test_date =
| typing = [[Type system#Static typing|Static]], [[Type system#Safely and unsafely typed systems|unsafe]], [[Nominative type system|nominative]]
| implementations = [[Microsoft Visual C++]], [[GNU Compiler Collection|GCC]], [[Borland C++ Builder]], [[Intel C++ Compiler]], [[Sun Studio (software)|Sun Studio]]
| dialects = [[ISO/IEC 14882|ISO/IEC C++]] 1998, [[ISO/IEC 14882|ISO/IEC C++]] 2003
| influenced_by = [[C (programming language)|C]], [[Simula]], [[Ada (programming language)|Ada 83]], [[ALGOL 68]], [[CLU programming language|CLU]], [[ML (programming language)|ML]]
| influenced = [[Perl]]<!--1987-->, [[Lua (programming language)|Lua]]<!--1993-->, [[Ada (programming language)|Ada 95]]<!--1995-->, [[Java (programming language)|Java]]<!--1995-->, [[PHP]]<!--1995-->, [[D programming language|D]]<!--1999-->, [[C Sharp (programming language)|C#]]<!--2001-->, [[Aikido (programming language)|Aikido]]<!--2003-->, [[Dao (programming language)|Dao]]<!--2006-->
| operating_system =
| license =
| website =
}}


'''C++''' ("'''C Plus Plus'''", {{pronEng|ˌsiːˌplʌsˈplʌs}}) is a general-purpose [[programming language]]. It is regarded as a ''middle-level'' language, as it comprises a combination of both [[high-level programming language|high-level]] and [[low-level programming language|low-level]] language features.<ref>C++ The Complete Reference Third Edition, Herbert Schildt, Publisher: Osborne McGraw-Hill.</ref> It was developed by [[Bjarne Stroustrup]] in 1979 at [[Bell Labs]] as an enhancement to the [[C (programming language)|C programming language]] and originally named "''C with Classes''". It was renamed to ''C++'' in 1983.
==History==
{| class="wikitable"
|-
! Hebrew <br>''gimel''
! Phoenician <br>''gimel''
! Classical Greek <br>''Gamma''
! Early Latin <br>C
! Late Latin <br>C
|- style="background-color:white; text-align:center;"
|[[Image:Gimel Hebrew.svg|65px|Hebrew gimel]]
|[[Image:Phoenician G.svg|65px|Phoenician gimel]]
|[[Image:G 17162.gif|Classical Greek Gamma]]
|[[Image:Early Latin G2.png|Early Latin]]
|[[Image:Capital C.svg|65px|Late Latin C]]
|}
C comes from the same letter as G or g. The [[Semites]] named it [[Gimel (letter)|gimel]]. The sign is possibly adapted from an [[Egyptian hieroglyphs|Egyptian hieroglyph]] for a [[sling (weapon)#Staff sling|staff sling]], which may have been the meaning of the name ''gimel''. Another possibility is that it depicted a camel, the Semitic name for which was ''gamal''.


C++ is widely used in the software industry. Some of its application domains include systems software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ [[compiler]] software, including the [[GNU Compiler Collection|GNU Project]], [[Microsoft Visual C++|Microsoft]], [[Intel C++ Compiler|Intel]], [[Borland C++ Builder|Borland]] and others.
In the [[Etruscan language]], [[plosive consonant]]s had no contrastive [[phonation|voicing]], so the [[Greek language|Greek]] <font face="Times New Roman">[[Gamma|Γ]]</font> (Gamma) was adopted into the [[Etruscan alphabet]] to represent the {{IPA|/k/}} phoneme. Already in the [[Western Greek alphabet]], Gamma first took a [[Image:Early Etruscan C.gif|15px]] form in Early Etruscan, then [[Image:Classical Etruscan C.gif|15px]] in Classical Etruscan. In Early Latin it took a form then C in Classical Latin. In the earliest [[Latin]] inscriptions, the letters C, K and Q were all used to represent the sounds /k/ and /g/ (which were not differentiated in writing). Of these, Q was used to represent /k/ or /g/ before a rounded vowel, K before /a/, and C elsewhere. <ref>{{cite book
|title=New Comparative Grammar of Greek and Latin
|first=Andrew L.
|last=Sihler
|edition=illustrated
|publisher=Oxford University Press
|year=1995
|location=New York
|ISBN=0195083458
|url=http://books.google.com/books?id=IeHmqKY2BqoC
|pages=21
}}</ref> During the 3rd century BC, a modified character<!--, or [[Image:Early Latin G.JPG]], --> was introduced for {{IPA|/g/}}, and C itself retained for {{IPA|/k/}}. The use of C (and its variant G) replaced most usages of K and Q. Hence, in the classical period and after, G was treated as the [[phonetic]] representative of "gamma", and C as the equivalent of "kappa", in the transliteration of Greek words into Roman spelling, as in "''KA∆MOΣ, KYPOΣ, ΦΩKIΣ,''" in Roman letters "CADMVS, CYRVS, PHOCIS". It is also possible but uncertain that C represented only {{IPA|/g/}} at a very early time, while [[K]] might have been used for {{IPA|/k/}}.


The language began as enhancements to ''C'', first adding [[class (computer science)|classes]], then [[virtual functions]], [[operator overloading]], [[multiple inheritance]], [[template (programming)|templates]], and [[exception handling]] among other features. After years of development, the C++ programming language standard was ratified in 1998 as ''[[ISO/IEC 14882]]:1998''. That standard is still current, but is amended by the 2003 technical corrigendum, ''ISO/IEC 14882:2003''. The next standard version (known informally as [[C++0x]]) is in development.
Other alphabets have letters identical to C in form but not in use and derivation, in particular the [[Cyrillic alphabet|Cyrillic]] letter [[Es (Cyrillic)|Es]] which derives from one form of the Greek letter [[sigma (letter)|sigma]], known as the "lunate sigma" due to its resemblance to the crescent moon.


C++ is a [[Type system#Static typing|statically typed]], [[free-form language|free-form]], [[multi-paradigm programming language|multi-paradigm]], [[compiled language]] where compilation creates [[machine code]] for a target machine hardware.
==Later use==
When the Roman alphabet was introduced into Britain, C represented only {{IPA|/k/}} and this value of the letter has been retained in loanwords to all the [[insular Celtic languages]]: in [[Welsh language|Welsh]], [[Irish language|Irish]], [[Scottish Gaelic language|Gaelic]], C, c, is still only {{IPA|/k/}}. The [[Old English]] or "[[Anglo-Saxon language|Anglo-Saxon]]" writing was learned from the Celts, apparently of Ireland; hence C, c, in Old English, also originally represented {{IPA|/k/}}: the words ''kin, break, broken, thick, seek,'' were in Old English written ''cyn, brecan, brocen, Þicc, séoc''. But during the course of the Old English period, {{IPA|/k/}} before front vowels ({{IPA|/e/}} and {{IPA|/i/}}) was [[palatalization|palatalized]], having, by the 10th century, advanced nearly or quite to the sound of {{IPA|/tʃ/}}, though still written c, as in ''cir(i)ce, wrecc(e)a''. On the continent, meanwhile, a similar phonetic change had also been going on (for example, in [[Italian language|Italian]]).


{{TOClimit|limit=3}}
Original Latin {{IPA|/k/}} before front vowels had palatalized in Italy to the sound of {{IPA|/tʃ/}}, and in France and the Iberian peninsula to that of {{IPA|/ts/}}. Yet for these new sounds the old character C, c, was still retained before ''e'' and ''i,'' the letter thus represented two distinct values. Moreover the Latin phoneme {{IPA|/kʷ/}} (represented by QV, or ''qu'') de-labialized to {{IPA|/k/}} meaning that the various Romance languages had {{IPA|/k/}} before front vowels. In addition, [[Norman language|Norman]] used the Greek letter ''K,'' so that the sound {{IPA|/k/}} could be represented by either ''k'' or ''c,'' the latter of which could represent either {{IPA|/k/}} or {{IPA|/ts/}}. These French inconsistencies as to C and K were, after the [[Norman Conquest]], applied to the writing of English, which caused a considerable re-spelling of the Old English words. Thus while Old English ''candel, clif, corn, crop, cú,'' remained unchanged, ''Cent, cæ´[[Image:Insular G.GIF]] (cé´[[Image:Insular G.GIF]]), cyng, brece, séoce,'' were now (without any change of sound) spelt ''Kent, ke<font face="Microsoft Sans Serif">ȝ</font>, kyng, breke, seoke;'' even ''cniht'' was subsequently spelt ''kniht, knight,'' and ''þic, þicc,'' became ''thik, thikk, thick''. The Old English cw- was also at length (very unnecessarily) displaced by the French ''qw, qu,'' so that the Old English ''cwén, cwic,'' became [[Middle English]] ''qwen, quen, qwik, quik,'' now ''queen, quick''. The sound {{IPA|/tʃ/}} to which Old English palatalized c had advanced, also occurred in French, chiefly (in Central French) from Latin ''c'' before ''a''. In French it was represented by ''ch,'' as in ''champ, cher:''–Latin ''camp-um, caōr-um; '' and this spelling was now introduced into English: the Hatton Gospels, written about 1160, have in Matt. i-iii, ''child, chyld, riche, mychel,'' for the ''cild, rice, mycel,'' of the Old English version whence they were copied. In these cases, the Old English ''c'' gave place to ''k, qu, ch;'' but, on the other hand, ''c'' in its new value of {{IPA|/ts/}} came in largely in French words like ''processiun, emperice, grace,'' and was also substituted for ''ts'' in a few Old English words, as ''miltse, bletsien,'' in early Middle English ''milce, blecien''. By the end of the 13th century both in France and England, this sound {{IPA|/ts/}} de-affricated to {{IPA|/s/}}; and from that date c before front vowels has been, phonetically, a duplicate or subsidiary letter to s; used either for [[etymology|etymological]] reasons, as in ''lance, cent,'' or (in defiance of etymology) to avoid the ambiguity due to the "etymological" use of s for {{IPA|/z/}}, as in ''ace, mice, once, pence, defence''.


== History ==
Thus, to show the etymology, English spelling has ''advise, devise,'' instead of ''advize, devize,'' which while ''advice, device, dice, ice, mice, twice,'' etc., do not reflect etymology; example has extended this to ''hence, pence, defence,'' etc., where there is no etymological necessity for ''c''. Former generations also wrote ''{{lang|eng|sence}}'' for sense.


[[Image:BjarneStroustrup.jpg|thumb|[[Bjarne Stroustrup]], creator of C++]]
Hence, today the [[Romance languages]] and [[English language|English]] have a common feature inherited from [[Vulgar Latin]] where C takes on either a [[Hard and soft C|"hard" or "soft"]] value depending on the following vowel.


Stroustrup began work on ''C with Classes'' in 1979. The idea of creating a new language originated from Stroustrup's experience in programming for his Ph.D. thesis. Stroustrup found that [[Simula]] had features that were very helpful for large software development, but the language was too slow for practical use, while [[BCPL]] was fast but too low-level to be suitable for large software development. When Stroustrup started working in [[AT&T Bell Labs]], he had the problem of analyzing the [[Unix|UNIX]] [[Kernel (computer science)|kernel]] with respect to [[distributed computing]]. Remembering his Ph.D. experience, Stroustrup set out to enhance the [[C (programming language)|C]] language with [[Simula]]-like features. C was chosen because it was general-purpose, fast, portable and widely used. Besides C and Simula, some other languages that inspired him were [[ALGOL 68]], [[Ada programming language|Ada]], [[CLU programming language|CLU]] and [[ML programming language|ML]]. At first, the class, derived class, strong type checking, [[inlining]], and default argument features were added to C via [[Cfront]]. The first commercial release occurred in October 1985.<ref name="invention">{{cite web|url=http://public.research.att.com/~bs/bs_faq.html#invention|title=Bjarne Stroustrup's FAQ - When was C++ invented?|accessdate=2006-05-30}}</ref>
In English, [[French language|French]] and [[Spanish language|Spanish]], C takes the "hard" value {{IPA|/k/}} finally and before A, O, and U, and a "soft" value before E and I. However, as with everything else regarding English spelling, there are a couple of exceptions: "[[soccer]]" and "[[Pronunciation of Celtic|Celt]]" are words that have a ''k'' sound in the "wrong" place.


In 1983, the name of the language was changed from ''C with Classes'' to C++ (++ being the [[Increment|increment operator]] in C and C++). New features were added including [[virtual function]]s, function name and operator overloading, references, constants, user-controlled free-store memory control, improved type checking, and BCPL style single-line comments with two forward slashes (//). In 1985, the first edition of ''[[The C++ Programming Language]]'' was released, providing an important reference to the language, since there was not yet an official standard. In 1989, Release 2.0 of C++ was released. New features included multiple inheritance, abstract classes, static member functions, [[const correctness|const member functions]], and protected members. In 1990, ''The Annotated C++ Reference Manual'' was published. This work became the basis for the future standard. Late addition of features included [[template (programming)|template]]s, [[exceptions]], [[Namespace (computer science)|namespaces]], new [[cast (computer science)|cast]]s, and a [[Boolean datatype|Boolean type]].
The pronunciation of the "soft" value varies by language. In English, French, Portuguese, and Spanish from Latin America and southern Spain, C before E and I sounds {{IPA|/s/}}. In the Spanish spoken in northern and central Spain it is pronounced as the [[voiceless dental fricative]] {{IPA|/θ/}}. In [[Italian language|Italian]] and [[Romanian language|Romanian]] it is pronounced as {{IPA|/ʧ/}}.


As the C++ language evolved, a standard library also evolved with it. The first addition to the C++ standard library was the [[iostream|stream I/O library]] which provided facilities to replace the traditional C functions such as [[printf]] and [[scanf]]. Later, among the most significant additions to the standard library, was the [[Standard Template Library]].
Other languages use C with different values, such as {{IPA|/ð/}} in [[Fijian language|Fijian]]; {{IPA|/ʕ/}} in [[Somali language|Somali]]; the click {{IPA|/ǀ/}} in [[Xhosa language|Xhosa]] and [[Zulu language|Zulu]]; {{IPA|/ʤ/}} in [[Turkish language|Turkish]], [[Kurdish Language|Kurdish]]; [[Tatar language|Tatar]], and [[Azeri language|Azeri]]; {{IPA|/ʧ/}} in [[Indonesian language|Indonesian]], [[Malay language|Malay]], [[Volapük language|Volapük]], and a number of African languages such as [[Hausa language|Hausa]], [[Fula language|Fula]], and [[Manding languages|Manding]]; {{IPA|/ʦ/}} in all [[Balto-Slavic languages]] that use the Latin alphabet, as well as [[Albanian language|Albanian]], [[Esperanto language|Esperanto]], [[Hungarian language|Hungarian]], [[Ido language|Ido]], and [[Interlingua language|Interlingua]]; and {{IPA|/ʦʰ/}} in [[Pinyin|Romanized]] [[Chinese language|Chinese]]. It is also used as a transliteration of the Cyrillic "Ц" in the Latinic forms of [[Serbian alphabet|Serbian]], [[Romanisation of Macedonian|Macedonian]], and sometimes [[Romanization of Ukrainian|Ukrainian]] (along with digraph TS).


C++ continues to be used and is still one of the preferred programming languages to develop professional applications. The language has gone from being mostly Western, to attracting programmers from all over the world.<ref name="present day">{{cite web|url=http://www.odesk.com/trends/c%2B%2B|title=Trends on C++ Programmers, Developers & Engineers|accessdate=2008-12-01}}</ref>
There are several common digraphs with C, the most common being [[Ch (digraph)|CH]], which in some languages such as [[German language|German]] is far more common than C alone. In English, CH most commonly takes the value {{IPA|/ʧ/}} (which it invariably has in [[Spanish language|Spanish]]), but can take the value {{IPA|/k/}} or {{IPA|/ʃ/}}; some dialects of English also have {{IPA|/x/}} in words like ''loch'' where other speakers pronounce the final sound as {{IPA|/k/}}. CH takes various values in other languages, such as {{IPA|/x/}} in the [[West Slavic languages]] (e.g. [[Polish language|Polish]], [[Czech language|Czech]] and [[Slovak language|Slovak]]); {{IPA|/ç/}}, {{IPA|/k/}}, or {{IPA|/x/}} in German; {{IPA|/x/}} or silent in [[Dutch language|Dutch]]; {{IPA|/ʃ/}} in [[French language|French]] and [[Portuguese language|Portuguese]]; {{IPA|/k/}} in Interlingua and Italian, {{IPA|/ʈʂʰ/}} in [[Mandarin Chinese]]; and so forth. CK, with the value {{IPA|/k/}}, is often used after short vowels in [[Germanic languages]] such as English, German and [[Swedish language|Swedish]] (but some other Germanic languages use KK instead, such as Dutch and [[Norwegian language|Norwegian]]). The digraph CZ is found in Polish and CS in Hungarian, both representing {{IPA|/ʧ/}}. In Old English, Italian, and a few languages related to Italian, sc represents {{IPA|/ʃ/}} (however in Italian and related languages this only happens before e or i, otherwise it represents {{IPA|/sk/}}).
===Language standard ===
After years of work, a joint [[American National Standards Institute|ANSI]]&ndash;[[International Organization for Standardization|ISO]] committee standardized C++ in 1998 (''[[ISO/IEC 14882]]:1998''). For some years after the official release of the standard, the committee processed defect reports, and published a corrected version of the C++ standard in 2003. In 2005, a technical report, called the "[[Technical Report 1|Library Technical Report 1]]" (often known as TR1 for short), was released. While not an official part of the standard, it gives a number of extensions to the standard library, which are expected to be included in the next version of C++. Support for TR1 is growing in almost all currently maintained C++ compilers.


While the C++ language is royalty-free, the standard document itself is not freely available.
As a [[phonetic]] symbol, lowercase c is the [[International Phonetic Alphabet]] (IPA) and [[X-SAMPA]] symbol for the [[voiceless palatal plosive]], and capital C is the X-SAMPA symbol for the [[voiceless palatal fricative]].


== Codes for computing ==
=== Etymology ===

{{Letter
According to Stroustrup: "the name signifies the evolutionary nature of the changes from C".<ref name="name">{{cite web|url=http://public.research.att.com/~bs/bs_faq.html#name|title=Bjarne Stroustrup's FAQ - Where did the name "C++" come from?|accessdate=2008-01-16}}</ref> During C++'s development period, the language had been referred to as "new C", then "C with Classes". The final name is credited to [[Rick Mascitti]] (mid-1983) and was first used in December 1983. When Mascitti was questioned informally in 1992 about the naming, he indicated that it was given in a [[tongue-in-cheek]] spirit. It stems from C's "++" [[operator]] (which increments the [[Value (computer science)|value]] of a [[variable]]) and a common [[naming convention]] of using "+" to indicate an enhanced computer program. There is no language called "C plus". [[ABCL/c+]] was the name of an earlier, unrelated programming language.
|NATO=Charlie

|Morse=–·–·
== Philosophy ==
|Character=C3

|Braille=⠉
In ''[[The Design and Evolution of C++]]'' (1994), Bjarne Stroustrup describes some rules that he uses for the design of C++:
}}

In [[Unicode]] the [[majuscule|capital]] C is codepoint U+0043 and the [[lower case]] c is U+0063.
* C++ is designed to be a [[statically typed]], general-purpose language that is as efficient and portable as C
* C++ is designed to directly and comprehensively support multiple programming styles ([[procedural programming]], [[data abstraction]], [[object-oriented programming]], and [[generic programming]])
* C++ is designed to give the programmer choice, even if this makes it possible for the programmer to choose incorrectly
* C++ is designed to be as compatible with C as possible, therefore providing a smooth transition from C
* C++ avoids features that are platform specific or not general purpose
* C++ does not incur overhead for features that are not used (the "zero-overhead principle")
* C++ is designed to function without a sophisticated programming environment

''Inside the C++ Object Model'' (Lippman, 1996) describes how compilers may convert C++ program statements into an in-memory layout. Compiler authors are, however, free to implement the standard in their own manner.

==Standard library==
The 1998 [[American National Standards Institute|ANSI]]/[[International Organization for Standardization|ISO]] C++ [[standardization|standard]] consists of two parts: the [[core language]] and the [[C++ standard library]]; the latter includes most of the [[Standard Template Library]] (STL) and a slightly modified version of the C standard library. Many C++ libraries exist which are not part of the standard, and, using linkage specification, libraries can even be written in languages such as [[C (programming language)|C]], [[Fortran]], [[Pascal (programming language)|Pascal]], or [[BASIC]]. Which of these are supported is compiler dependent.

The C++ standard library incorporates the C standard library with some small modifications to make it work better with the C++ language. Another large part of the C++ library is based on the STL. This provides such useful tools as [[container (data structure)|container]]s (for example [[array|vector]]s and [[linked list|lists]]), [[iterator]]s to provide these containers with array-like access and [[algorithm]]s to perform operations such as searching and sorting. Furthermore (multi)maps ([[associative array]]s) and (multi)sets are provided, all of which export compatible interfaces. Therefore it is possible, using templates, to write generic algorithms that work with any container or on any sequence defined by iterators. As in C, the [[feature]]s of the [[library]] are accessed by using the <code>#include</code> [[directive (programming)|directive]] to include a [[standard header]]. C++ provides [[C++ standard library#Standard headers|69 standard headers]], of which 19 are deprecated.

The STL was originally a third-party library from [[Hewlett-Packard|HP]] and later [[Silicon Graphics|SGI]], before its incorporation into the C++ standard. The standard does not refer to it as "STL", as it is merely a part of the standard library, but many people still use that term to distinguish it from the rest of the library (input/output streams, internationalization, diagnostics, the C library subset, etc.).

Most C++ compilers provide an implementation of the C++ standard library, including the STL. Compiler-independent implementations of the STL, such as [[STLPort]], also exist. Other projects also produce various custom implementations of the C++ standard library and the STL with various design goals.

==Language features==

C++ inherits most of C's syntax and the [[C preprocessor]]. The following is a [[Hello world program]] which uses the [[C++ standard library]] stream facility to write a message to [[Standard output#Standard output .28stdout.29|standard output]]:<ref>{{ cite book | first = Bjarne | last = Stroustrup | authorlink = Bjarne Stroustrup | year = 2000 | pages = 46 | title = The C++ Programming Language | edition = Special Edition | publisher = Addison-Wesley | isbn = 0-201-70073-5 }}</ref><ref>[http://www.research.att.com/~bs/3rd_issues.html Open issues for The C++ Programming Language (3rd Edition)] - This code is copied directly from Bjarne Stroustrup's errata page (p. 633). He addresses the use of <code>'\n'</code> rather than <code>std::endl</code>.
Also see [http://www.research.att.com/~bs/bs_faq2.html#void-main www.research.att.com] and [http://www.delorie.com/djgpp/v2faq/faq22_25.html www.delorie.com/djgpp/] for an explanation of the implicit <code>return 0;</code> in the <code>main</code> function. This implicit return is ''not'' available in other functions.</ref><!--

Before making changes, please discuss on the Talk page and ensure the new version reflects consensus.

Thank you.
-->
<source lang="cpp">
#include <iostream> // provides std::cout
int main()
{
std::cout << "Hello, world!\n";
}
</source>



===Operators and operator overloading===
C++ provides more than [[Operators in C and C++|30 operators]], covering basic arithmetic, bit manipulation, indirection, comparisons, logical operations and more. Almost all operators can be [[Operator overloading|overloaded]] for user-defined types, with a few notable exceptions such as member access (. and .*). The rich set of overloadable operators is central to using C++ as a [[domain specific language]]. The overloadable operators are also an essential part of many advanced C++ programming techniques, such as [[smart pointer]]s. Overloading an operator does not change the precedence of calculations involving the operator, nor does it change the number of operands that the operator uses (any operand may however be ignored).

===Templates===
{{see also|generic programming|template metaprogramming}}
C++ templates enable [[generic programming]]. C++ supports both function and class templates. Templates may be parameterized by types, compile-time constants, and other templates. C++ templates are implemented by ''instantiation'' at compile-time. To instantiate a template, compilers substitute specific arguments for a template's parameters to generate a concrete function or class instance. Templates are a powerful tool that can be used for [[generic programming]], [[template metaprogramming]], and code optimization, but this power implies a cost. Template use may increase code size, since each template instantiation produces a copy of the template code: one for each set of template arguments. This is in contrast to run-time generics seen in other languages (e.g. [[Generics in Java|Java]]) where at compile-time the type is erased and a single template body is preserved.

Templates are different from macros: while both of these compile-time language features enable conditional compilation, templates are not restricted to lexical substitution. Templates are aware of the semantics and type system of their companion language, as well as all compile-time type definitions, and can perform high-level operations including programmatic flow control based on evaluation of strictly type-checked parameters. Macros are capable of conditional control over compilation based on predetermined criteria, but cannot instantiate new types, recurse, or perform type evaluation and in effect are limited to pre-compilation text-substitution and text-inclusion/exclusion. In other words, macros can control compilation flow based on pre-defined symbols but cannot, unlike templates, independently instantiate new symbols. Templates are a tool for static [[Polymorphism in object-oriented programming|polymorphism]] (see below) and [[generic programming]].

In addition, templates are a compile time mechanism in C++ which is [[Turing-complete]], meaning that any computation expressible by a computer program can be computed, in some form, by a [[template metaprogramming|template metaprogram]] prior to runtime.

In summary, a template is a compile-time parameterized function or class written without knowledge of the specific arguments used to instantiate it. After instantiation the resulting code is equivalent to code written specifically for the passed arguments. In this manner, templates provide a way to decouple generic, broadly-applicable aspects of functions and classes (encoded in templates) from specific aspects (encoded in template parameters) without sacrificing performance due to abstraction.

===Objects===
{{main|C++ structures and classes}}

C++ introduces [[object-oriented]] (OO) features to C. It offers [[class (computer science)|class]]es, which provide the four features commonly present in OO (and some non-OO) languages: [[Abstraction (computer science)|abstraction]], [[Information hiding|encapsulation]], [[Inheritance (object-oriented programming)|inheritance]], and [[Polymorphism (computer science)|polymorphism]]. Objects are instances of classes created at runtime. The class can be thought of as a template from which many different individual objects may be generated as a program runs.

====Encapsulation====
[[information hiding|Encapsulation]] is the hiding of information. C++ implements encapsulation by allowing all members of a class to be declared as either public, private, or protected. A public member of the class is accessible to any function. A private member is accessible only to functions that are members of that class and to functions and classes explicitly granted access permission by the class ("friends"). A protected member is accessible to members of classes that inherit from the class in addition to the class itself and any friends.

The OO principle is that all of the functions (and only the functions) that access the internal representation of a type should be encapsulated within the type definition. C++ supports this (via member functions and friend functions), but does not enforce it: the programmer can declare parts or all of the representation of a type to be public, and is allowed to make public entities that are not part of the representation of the type. Because of this, C++ supports not just OO programming, but other weaker decomposition paradigms, like [[Modularity (programming)|modular programming]].

It is generally considered good practice to make all [[data]] private or protected, and to make public only those functions that are part of a minimal interface for users of the class. This hides all the details of data implementation, allowing the designer to later fundamentally change the implementation without changing the interface in any way.

====Inheritance====
[[Inheritance (computer science)|Inheritance]] allows one data type to acquire properties of other data types. Inheritance from a base class may be declared as public, protected, or private. This access specifier determines whether unrelated and derived classes can access the inherited public and protected members of the base class. Only public inheritance corresponds to what is usually meant by "inheritance". The other two forms are much less frequently used. If the access specifier is omitted, a "class" inherits privately, while a "struct" inherits publicly. Base classes may be declared as virtual; this is called [[virtual inheritance]]. Virtual inheritance ensures that only one instance of a base class exists in the inheritance graph, avoiding some of the ambiguity problems of [[multiple inheritance]].

'''[[Multiple inheritance]]''' is a C++ feature sometimes considered controversial. Multiple inheritance allows a class to be derived from more than one base class; this can result in a complicated graph of inheritance relationships. For example, a "Flying Cat" class can inherit from both "Cat" and "Flying Mammal". Some other languages, such as [[Java (programming language)|Java]] or [[C Sharp (programming language)|C#]], accomplish something similar (although more limited) by allowing inheritance of multiple [[Interface (computer science)|interfaces]] while restricting the number of base classes to one (interfaces, unlike classes, provide only declarations of member functions, no implementation or member data).

===Polymorphism===
{{see also|Polymorphism in object-oriented programming}}

[[Type polymorphism|Polymorphism]] enables one common interface for many implementations, and for objects to act differently under different circumstances.

C++ supports several kinds of ''static'' ([[compile-time]]) and ''dynamic'' ([[run-time]]) [[polymorphism (computer science)|polymorphism]]s. Compile-time polymorphism does not allow for certain run-time decisions, while run-time polymorphism typically incurs a performance penalty.

====Static polymorphism====

[[Function overloading]] allows programs to declare multiple functions having the same name (but with different arguments). The functions are distinguished by the number and/or types of their [[Parameter (computer science)|formal parameter]]s. Thus, the same function name can refer to different functions depending on the context in which it is used. The type returned by the function is not used to distinguish overloaded functions.

When declaring a function, a programmer can specify [[default arguments]] for one or more parameters. Doing so allows the parameters with defaults to optionally be omitted when the function is called, in which case the default arguments will be used. When a function is called with fewer arguments than there are declared parameters, explicit arguments are matched to parameters in left-to-right order, with any unmatched parameters at the end of the parameter list being assigned their default arguments. In many cases, specifying default arguments in a single function declaration is preferable to providing overloaded function definitions with different numbers of parameters.

[[Generic programming#Templates|Templates]] in C++ provide a sophisticated mechanism for writing generic, polymorphic code. In particular, through the [[Curiously Recurring Template Pattern]] it's possible to implement a form of static polymorphism that closely mimics the syntax for overriding virtual functions. Since C++ templates are type-aware and [[Turing-complete]] they can also be used to let the compiler resolve recursive conditionals and generate substantial programs through [[template metaprogramming]].

====Dynamic polymorphism====
=====Inheritance=====
Variable pointers (and references) to a base class type in C++ can refer to objects of any derived classes of that type in addition to objects exactly matching the variable type. This allows arrays and other kinds of containers to hold pointers to objects of differing types. Because assignment of values to variables usually occurs at run-time, this is necessarily a run-time phenomenon.

C++ also provides a <code>dynamic_cast</code> operator, which allows the program to safely attempt conversion of an object into an object of a more specific object type (as opposed to conversion to a more general type, which is always allowed). This feature relies on [[run-time type information]] (RTTI). Objects known to be of a certain specific type can also be cast to that type with <code>static_cast</code>, a purely compile-time construct which is faster and does not require RTTI.

=====Virtual member functions=====
Ordinarily when a function in a derived class [[Method overriding (programming)|overrides]] a function in a base class, the function to call is determined by the type of the object. A given function is overridden when there exists no difference, in the number or type of parameters, between two or more definitions of that function. Hence, at compile time it may not be possible to determine the type of the object and therefore the correct function to call, given only a base class pointer; the decision is therefore put off until runtime. This is called [[dynamic dispatch]]. [[virtual functions|Virtual member functions]] or ''methods''<ref>{{cite book | quote = A virtual member function is sometimes called a ''method''.| first = Bjarne | last = Stroustrup | authorlink = Bjarne Stroustrup | year = 2000 | pages = 310 | title = The C++ Programming Language | edition = Special Edition | publisher = Addison-Wesley | isbn = 0-201-70073-5 }}</ref> allow the most specific implementation of the function to be called, according to the actual run-time type of the object. In C++, this is commonly done using [[virtual function table]]s. If the object type is known, this may be bypassed by prepending a [[fully qualified name|fully qualified class name]] before the function call, but in general calls to virtual functions are resolved at run time.

In addition to standard member functions, operator overloads and destructors can be virtual. A general rule of thumb is that if any functions in the class are virtual, the destructor should be as well. As the type of an object at its creation is known at compile time, constructors, and by extension copy constructors, cannot be virtual. Nonetheless a situation may arise where a copy of an object needs to be created when a pointer to a derived object is passed as a pointer to a base object. In such a case a common solution is to create a <code>clone()</code> (or similar) function and declare that as virtual. The <code>clone()</code> method creates and returns a copy of the derived class when called.

A member function can also be made "pure virtual" by appending it with <code>= 0</code> after the closing parenthesis and before the semicolon. Objects cannot be created of a class with a pure virtual function and are called abstract data types. Such abstract data types can only be derived from. Any derived class inherits the virtual function as pure and must provide a non-pure definition of it (and all other pure virtual functions) before objects of the derived class can be created. An attempt to create an object from a class with a pure virtual function or inherited pure virtual function will be flagged as a compile-time error.

==Parsing and processing C++ source code==
It is relatively difficult to write a good C++ [[parser]] with classic parsing algorithms such as <code>[[LALR parser|LALR(1)]].</code><ref>[http://www.nobugs.org/developer/parsingcpp/ Parsing C++ at nobugs.org<!-- Bot generated title -->]</ref> This is partly because the C++ grammar is not LALR. Because of this, there are very few tools for analyzing or performing non-trivial transformations (e.g., [[refactoring]]) of existing code. One way to handle this difficulty is to choose a different syntax, such as [[Significantly Prettier and Easier C++ Syntax]], which is LALR(1) parsable. More powerful parsers, such as [[GLR parser]]s, can be substantially simpler (though slower).

Parsing (in the literal sense of producing a syntax tree) is not the most difficult problem in building a C++ processing tool. Such tools must also have the same understanding of the meaning of the identifiers in the program as a compiler might have. Practical systems for processing C++ must then not only parse the source text, but be able to resolve for each identifier precisely which definition applies (e.g. they must correctly handle C++'s complex scoping rules) and what its type is, as well as the types of larger expressions.

Finally, a practical C++ processing tool must be able to handle the variety of C++ dialects used in practice (such as that supported by the [[GNU Compiler Collection]] and that of Microsoft's [[Visual C++]]) and implement appropriate analyzers, source code transformers, and regenerate source text. Combining advanced parsing algorithms such as GLR with symbol table construction and program transformation machinery can enable the construction of arbitrary C++ tools.

== Compatibility ==

Producing a reasonably standards-compliant C++ compiler has proven to be a difficult task for compiler vendors in general. For many years, different C++ compilers implemented the C++ language to different levels of compliance to the standard, and their implementations varied widely in some areas such as [[partial template specialization]]. Recent releases of most popular C++ compilers support almost all of the C++ 1998 standard.<ref>{{cite web|url=http://www.ddj.com/dept/cpp/184401381|title=C++ Conformance Roundup|work=[[Dr. Dobb's Journal]]|author=Herb Sutter|date=2003-04-15|accessdate=2006-05-30}}</ref>

One particular point of contention is the <tt>export</tt> keyword, intended to allow template definitions to be separated from their declarations. The first compiler to implement <tt>export</tt> was [[Comeau C/C++]], in early 2003 (5 years after the release of the standard); in 2004, the beta compiler of [[Borland C++ Builder X]] was also released with <tt>export</tt>. Both of these compilers are based on the [[Edison Design Group|EDG]] C++ front end. It should also be noted that many C++ books provide example code using the keyword <tt>export</tt> (for example, ''Beginning ANSI C++'' by Ivor Horton) which will not compile in most compilers, but there is no reference to the problem with the keyword <tt>export</tt> mentioned. Other compilers such as [[GNU Compiler Collection|GCC]] do not support it at all. [[Herb Sutter]], secretary of the C++ standards committee, recommended that <tt>export</tt> be removed from future versions of the C++ standard,<ref>{{PDFlink|[http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1426.pdf Why We Can’t Afford Export]|266&nbsp;[[Kibibyte|KiB]]<!-- application/pdf, 272977 bytes -->}}</ref> but finally the decision was made to retain it.<ref>{{cite web|url=http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2003/n1459.html|title=Minutes of J16 Meeting No. 36/WG21 Meeting No. 31, April 7-11, 2003|date=2003-04-25|accessdate=2006-09-04}}</ref>

In order to give compiler vendors greater freedom, the C++ standards committee decided not to dictate the implementation of [[name mangling]], [[exception handling]], and other implementation-specific features. The downside of this decision is that [[object code]] produced by different [[compiler]]s is expected to be incompatible. There are, however, third party standards for particular machines or [[operating system]]s which attempt to standardize compilers on those platforms (for example C++ ABI<ref>{{cite web|url=http://www.codesourcery.com/cxx-abi/|title=C++ ABI|accessdate=2006-05-30}}</ref>); some compilers adopt a secondary standard for these items.

=== With C ===
{{details|Compatibility of C and C++}}

C++ is often considered to be a superset of C, but this is not strictly true.<ref name="superset">{{cite web|url=http://public.research.att.com/~bs/bs_faq.html#C-is-subset|title=Bjarne Stroustrup's FAQ - Is C a subset of C++?|accessdate=2008-01-18}}</ref> Most C code can easily be made to compile correctly in C++, but there are a few differences that cause some valid C code to be invalid in C++, or to behave differently in C++.

One commonly encountered difference is that C allows implicit conversion from <code>void*</code> to other pointer types, but C++ does not. Another common portability issue is that C++ defines many new keywords, such as <code>new</code> and <code>class</code>, that may be used as identifiers (e.g. variable names) in a C program.

Some incompatibilities have been removed by the latest [[C (programming_language)#C99|(C99) C standard]], which now supports C++ features such as <code>//</code> comments and mixed declarations and code. However, C99 introduced a number of new features that C++ does not support (such as variable-length arrays, native complex-number types, designated initializers and compound literals<ref>{{cite web|url=http://home.datacomm.ch/t_wolf/tw/c/c9x_changes.html|title=C9X -- The New C Standard|accessdate=27 December 2008}}</ref>), so the languages may be diverging more than they are converging. However, at least some of the new C99 features will likely be included in the next version of the C++ standard, [[C++0x]].

In order to intermix C and C++ code, any function declaration or definition that is to be called from/used both in C and C++ must be declared with C linkage by placing it within an <code>extern "C" { ... }</code> block. Such a function may not rely on features depending on name mangling (i.e., function overloading).

== Adoption and reception ==

{{Expand-section|date=October 2008}}

== Criticism ==
{{criticism-section}}
{{Refimprove|date=December 2008}}

{{see also|Comparison of Java and C++}}

Modern critics of the language raise several points. First, since C++ is based on and largely compatible with C, it inherits most of the criticisms leveled at that language. Taken as a whole, C++ has a large feature set, including all of C, plus a large set of its own additions, in part leading to criticisms of being a "bloated" and complicated language.{{Fact|date=September 2007}} Bjarne Stroustrup points out that resultant executables don't support these claims of bloat: "''I have even seen the C++ version of the 'hello world' program smaller than the C version.''"<ref>[http://www.research.att.com/~bs/bs_faq.html#Hello-world Why is the code generated for the "Hello world" program ten times larger for C++ than for C?]</ref> The [[Embedded C++]] standard was specified to deal with part of this, but it received criticism for leaving out useful parts of the language that incur no runtime penalty.<ref>[http://www.research.att.com/~bs/bs_faq.html#EC++ What do you think of EC++?]</ref> Because of its large feature set, it is difficult to fully master C++.

While C++ is more complex than some other programming languages, Bjarne Stroustrup points out that "''The programming world is far more complex today than it was 30 years ago, and modern programming languages reflect that.''"<ref>[http://www.research.att.com/~bs/bs_faq.html#big Why is C++ so BIG?]</ref> The ISO standard of the C++ language is about 310 pages (excluding library). For comparison, the C programming language's is about 160 pages, even though it was designed more than 15 years prior and doesn't consider object-oriented programming.

Other criticism stems from what is missing from C++. For example, the current version of Standard C++ provides no language features to create multi-threaded software. These facilities are present in some other languages including [[Java (programming language)|Java]], [[Ada (programming language)|Ada]], and [[C Sharp (programming language)|C#]] (see also [[Lock (computer science)#Language support|Lock]]). It is possible to use operating system calls or third party libraries to do multi-threaded programming, but both approaches may create portability concerns.

C++ is also sometimes compared unfavorably with single-paradigm object-oriented languages such as [[Smalltalk (programming language)|Smalltalk]], [[Java (programming language)|Java]] or [[Eiffel (programming language)|Eiffel]] on the basis that it allows programmers to "mix and match" [[object-oriented programming|object-oriented]] and [[procedural programming]], rather than strictly enforcing a single paradigm. This is part of [[Object-oriented programming#Criticism|a wider debate]] on the relative merits of the two programming styles.{{Fact|date=September 2007}}

== See also ==


* [[Comparison of programming languages]]
The [[ASCII]] code for capital C is 67 and for lower case c is 99; or in [[Binary numeral system|binary]] 01000011 and 01100011, respectively.
* [[List of compilers#C.2FC.2B.2B_compilers|List of C++ compilers]]
* [[Comparison_of_integrated_development_environments#C.2FC.2B.2B|Comparison of integrated development environments for C/C++]]
* [[List of C++ template libraries]]
* [[C++0x]], the planned new standard for C++


== References ==
The [[EBCDIC]] code for capital C is 195 and for lowercase c is 131.


{{reflist|2}}
The [[numeric character reference]]s in [[HTML]] and [[XML]] are "<tt>&amp;#67;</tt>" and "<tt>&amp;#99;</tt>" for upper and lower case, respectively.


==See also==
== Further reading ==


{{col-begin}}
{{refbegin|2}}
* {{cite book | first = David | last = Abrahams | authorlink = David Abrahams (computer programmer) | coauthors = [[Aleksey Gurtovoy]] | title = C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond | publisher = Addison-Wesley | isbn = 0-321-22725-5 }}
{{col-3}}
* {{cite book | first = Andrei | last = Alexandrescu | authorlink = Andrei Alexandrescu | year = 2001 | title = Modern C++ Design: Generic Programming and Design Patterns Applied | publisher = Addison-Wesley | isbn = 0-201-70431-5 }}
*[[Cent (currency)|¢]] (cent)
* {{cite book | first = Pete | last = Becker | authorlink = Pete Becker | year = 2006 | title = The C++ Standard Library Extensions : A Tutorial and Reference | publisher = Addison-Wesley | isbn = 0-321-41299-0 }}
*[[Ç]] (cedilla)
* {{cite book | first = Andrei | last = Alexandrescu | coauthors = Herb Sutter | authorlink = Andrei Alexandrescu | year = 2004 | title = C++ Design and Coding Standards: Rules and Guidelines for Writing Programs | publisher = Addison-Wesley | isbn = 0-321-11358-6 }}
*[[C-circumflex|Ĉ]] (C circumflex)
* {{cite book | first = James O. | last = Coplien | authorlink = James O. Coplien | year = 1992, reprinted with corrections 1994 | title = Advanced C++: Programming Styles and Idioms | isbn = 0-201-54855-0 }}
*[[Č]] (C caron)
* {{cite book | first = Stephen C. | last = Dewhurst | year = 2005 | title = C++ Common Knowledge: Essential Intermediate Programming | publisher = Addison-Wesley | isbn = 0-321-32192-8 }}
*[[Ć]] (C acute)
* {{cite book | author = Information Technology Industry Council | authorlink = Information and Communications Technology Council |
*[[Es (Cyrillic)|Cyrillic C (Es)]]. С, с are identical in shape with the Latin C,c but are equivalents of the Latin S, s.
publisher = ISO/IEC | location = Geneva | title = Programming languages — C++ | id = 14882:2003(E) | edition = Second edition | date = [[2003-10-15]] }}
*[[Tse (Cyrillic)|Ц, ц - Tse (Cyrillic)]]
* {{cite book | first = Nicolai M | last = Josuttis | authorlink = Nicolai M. Josuttis | title = The C++ Standard Library | publisher = Addison-Wesley | isbn = 0-201-37926-0 }}
*[[Ċ]] (C dot above)
* {{cite book | first = Andrew | last = Koenig | authorlink = Andrew Koenig (programmer)
{{col-3}}
| coauthors = Barbara E. Moo | year = 2000 | title = Accelerated C++ - Practical Programming by Example | publisher = Addison-Wesley | isbn = 0-201-70353-X }}
*{{Unicode|[[Ƈ]]}} (C hook)
* {{cite book | first = Stanley B. | last = Lippman | coauthors = Josée Lajoie, Barbara E. Moo | year = 2005 | title = C++ Primer | publisher = Addison-Wesley | isbn = 0-201-72148-1 }}
*{{Unicode|[[ʗ]]}} (stretched C)
* {{cite book | first = Stanley B. | last = Lippman | year = 1996 | title = Inside the C++ Object Model | publisher = Addison-Wesley | isbn = 0-201-83454-5 }}
*{{Unicode|[[Ḉ]]}} (C acute cedilla)
* {{cite book | first = Bjarne | last = Stroustrup | authorlink = Bjarne Stroustrup | year = 2000 | title = The C++ Programming Language | edition = Special Edition | publisher = Addison-Wesley | isbn = 0-201-70073-5 }}
*{{Unicode|[[₡]]}} (colon currency symbol)
* {{cite book | first = Bjarne | last = Stroustrup | authorlink = Bjarne Stroustrup | year = 1994 | title = The Design and Evolution of C++ | publisher = Addison-Wesley | isbn = 0-201-54330-3 }}
*{{Unicode|[[₢]]}} (cruzeiro currency symbol)<!--- Unicode 5 has 0x20B5 for the Ghanan cedi --->
* {{cite book | first = Herb | last = Sutter | authorlink = Herb Sutter |
*{{Unicode|[[ℂ]]}} (double-struck C)
year = 2001 | title = More Exceptional C++: 40 New Engineering Puzzles, Programming Problems, and Solutions | publisher = Addison-Wesley | isbn = 0-201-70434-X }}
*[[℃]] (degree Celsius)
* {{cite book | first = Herb | last = Sutter | authorlink = Herb Sutter |
*{{Unicode|[[ℭ]]}} (Gothic C)
year = 2004 | title = Exceptional C++ Style | publisher = Addison-Wesley | isbn = 0-201-76042-8 }}
*{{Unicode|[[Ⅽ]]}} (Roman number C)
* {{cite book | first = David | last = Vandevoorde | authorlink = David Vandevoorde | coauthors = [[Nicolai M. Josuttis]] | year = 2003 | title = C++ Templates: The complete Guide | publisher = Addison-Wesley | isbn = 0-201-73484-2 }}
*[[Hard and soft C]]
*[[Scott Meyers]] (2005). ''Effective C++''. Third Edition. Addison-Wesley. ISBN 0-321-33487-6
{{Col-3}}
{{Commons|C}}
{{refend}}
{{Wikisource1911Enc|C}}
{{col-end}}


==References==
==External links==
{{reflist}}
{{Wikibooks|C++}}
{{Wiktionary}}
* [http://www.research.att.com/~bs/hopl2.pdf A paper by Stroustrup showing the timeline of C++ evolution (1979-1991)]
* [http://incubator.apache.org/stdcxx/doc Apache C++ Standard Library Documentation]
* [http://www.open-std.org/jtc1/sc22/wg21/ Standards Committee Page: JTC1/SC22/WG21 - C++]
* [http://www.parashift.com/c%2B%2B-faq-lite/ C++ FAQ Lite by Marshall Cline]
* [http://www.computerworld.com.au/index.php/id;408408016;pp;1;fp;16;fpid;1 Computer World interview with Bjarne Stroustrup]
* [http://www.crazyengineers.com/small-talk/1-cover-story/24-small-talk-with-dr-bjarne-stroustrup CrazyEngineers.com interview with Bjarne Stroustrup]
* [http://www.devx.com/SpecialReports/Article/38813/0/page/1 The State of the Language: An Interview with Bjarne Stroustrup (August 15, 2008)]
* [http://mirror.csclub.uwaterloo.ca/csclub/stroustrup.mp4.torrent C++0x - An Overview (video, torrent link)]


{{Integrated development environments for C and C++}}
{{Latin alphabet}}


[[Category:Latin letters]]
[[Category:C++]]
[[Category:Curly bracket programming languages]]


[[af:C]]
[[af:C++]]
[[ar:سي++ (لغة برمجة)]]
[[als:C]]
[[ar:C]]
[[an:C++]]
[[arc:C]]
[[az:C++]]
[[ast:C]]
[[bn:সি++]]
[[zh-min-nan:C]]
[[be:C++]]
[[bs:C]]
[[bs:C++]]
[[br:C (lizherenn)]]
[[br:Areg C++]]
[[bg:C]]
[[bg:C++]]
[[ca:C]]
[[ca:C++]]
[[cs:C]]
[[cs:C++]]
[[co:C]]
[[da:C++]]
[[cy:C]]
[[de:C++]]
[[da:C]]
[[et:C++]]
[[de:C]]
[[el:C++]]
[[et:C]]
[[es:C++]]
[[el:C]]
[[eo:C++]]
[[es:C]]
[[eu:C++]]
[[eo:C]]
[[fa:سی++]]
[[eu:C]]
[[fr:C++]]
[[fa:C]]
[[gl:C++]]
[[fr:C (lettre)]]
[[ko:C++]]
[[fur:C]]
[[hy:C++]]
[[ga:C]]
[[hi:सी++]]
[[gan:C]]
[[hr:C++]]
[[gd:C]]
[[id:C++]]
[[gl:C]]
[[ia:C++]]
[[ko:C]]
[[is:C++]]
[[hr:C]]
[[it:C++]]
[[io:C]]
[[he:C++]]
[[ilo:C]]
[[ka:C++]]
[[it:C]]
[[la:C++]]
[[he:C]]
[[lv:C++]]
[[ka:C]]
[[lb:C++]]
[[kw:C]]
[[lt:C++]]
[[sw:C]]
[[hu:C++]]
[[ht:C]]
[[ml:സി++]]
[[mr:सी प्लस प्लस प्रोग्रॅमिंग लँग्वेज]]
[[la:C]]
[[lv:C]]
[[ms:C++]]
[[lb:C]]
[[nl:C++]]
[[lt:C]]
[[ja:C++]]
[[hu:C]]
[[no:C++]]
[[ms:C]]
[[nn:C++]]
[[nah:C]]
[[oc:C++]]
[[nl:C (letter)]]
[[pl:C++]]
[[ja:C]]
[[pt:C++]]
[[no:C]]
[[kaa:C++]]
[[nn:C]]
[[ro:C++]]
[[nrm:C]]
[[ru:C++]]
[[oc:C (lengatge)]]
[[sq:C++]]
[[uz:C (harf)]]
[[simple:C++]]
[[pl:C]]
[[sk:C++]]
[[pt:C]]
[[sl:C++]]
[[crh:C]]
[[sr:C++]]
[[ro:C]]
[[sh:C++]]
[[qu:C]]
[[fi:C++]]
[[ru:C (латиница)]]
[[sv:C++]]
[[se:C]]
[[ta:சி++]]
[[te:సీ ప్లస్ ప్లస్]]
[[stq:C]]
[[th:ภาษาซีพลัสพลัส]]
[[scn:C]]
[[simple:C]]
[[vi:C++]]
[[sk:C]]
[[tg:C++]]
[[sl:C]]
[[tr:C++]]
[[szl:C]]
[[tk:C++]]
[[bug:C++]]
[[sr:C (слово латинице)]]
[[fi:C]]
[[uk:C++]]
[[sv:C]]
[[zh-yue:C++]]
[[tl:C]]
[[bat-smg:C++]]
[[th:C]]
[[zh:C++]]
[[vi:C]]
[[tr:C (harf)]]
[[uk:C (латиниця)]]
[[vo:C]]
[[wuu:C]]
[[yi:C]]
[[yo:C]]
[[zh-yue:C]]
[[bat-smg:C]]
[[zh:C]]

Revision as of 16:06, 14 March 2009

"CXX" redirects here. It can also refer to 120 in Roman numerals.
C++
File:C plus plus book.jpg
ParadigmMulti-paradigm: procedural, object-oriented, generic
Designed byBjarne Stroustrup
First appeared1983
Typing disciplineStatic, unsafe, nominative
Websiteisocpp.org
Major implementations
Microsoft Visual C++, GCC, Borland C++ Builder, Intel C++ Compiler, Sun Studio
Dialects
ISO/IEC C++ 1998, ISO/IEC C++ 2003
Influenced by
C, Simula, Ada 83, ALGOL 68, CLU, ML
Influenced
Perl, Lua, Ada 95, Java, PHP, D, C#, Aikido, Dao

C++ ("C Plus Plus", Template:PronEng) is a general-purpose programming language. It is regarded as a middle-level language, as it comprises a combination of both high-level and low-level language features.[1] It was developed by Bjarne Stroustrup in 1979 at Bell Labs as an enhancement to the C programming language and originally named "C with Classes". It was renamed to C++ in 1983.

C++ is widely used in the software industry. Some of its application domains include systems software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel, Borland and others.

The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates, and exception handling among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. That standard is still current, but is amended by the 2003 technical corrigendum, ISO/IEC 14882:2003. The next standard version (known informally as C++0x) is in development.

C++ is a statically typed, free-form, multi-paradigm, compiled language where compilation creates machine code for a target machine hardware.

History

Bjarne Stroustrup, creator of C++

Stroustrup began work on C with Classes in 1979. The idea of creating a new language originated from Stroustrup's experience in programming for his Ph.D. thesis. Stroustrup found that Simula had features that were very helpful for large software development, but the language was too slow for practical use, while BCPL was fast but too low-level to be suitable for large software development. When Stroustrup started working in AT&T Bell Labs, he had the problem of analyzing the UNIX kernel with respect to distributed computing. Remembering his Ph.D. experience, Stroustrup set out to enhance the C language with Simula-like features. C was chosen because it was general-purpose, fast, portable and widely used. Besides C and Simula, some other languages that inspired him were ALGOL 68, Ada, CLU and ML. At first, the class, derived class, strong type checking, inlining, and default argument features were added to C via Cfront. The first commercial release occurred in October 1985.[2]

In 1983, the name of the language was changed from C with Classes to C++ (++ being the increment operator in C and C++). New features were added including virtual functions, function name and operator overloading, references, constants, user-controlled free-store memory control, improved type checking, and BCPL style single-line comments with two forward slashes (//). In 1985, the first edition of The C++ Programming Language was released, providing an important reference to the language, since there was not yet an official standard. In 1989, Release 2.0 of C++ was released. New features included multiple inheritance, abstract classes, static member functions, const member functions, and protected members. In 1990, The Annotated C++ Reference Manual was published. This work became the basis for the future standard. Late addition of features included templates, exceptions, namespaces, new casts, and a Boolean type.

As the C++ language evolved, a standard library also evolved with it. The first addition to the C++ standard library was the stream I/O library which provided facilities to replace the traditional C functions such as printf and scanf. Later, among the most significant additions to the standard library, was the Standard Template Library.

C++ continues to be used and is still one of the preferred programming languages to develop professional applications. The language has gone from being mostly Western, to attracting programmers from all over the world.[3]

Language standard

After years of work, a joint ANSIISO committee standardized C++ in 1998 (ISO/IEC 14882:1998). For some years after the official release of the standard, the committee processed defect reports, and published a corrected version of the C++ standard in 2003. In 2005, a technical report, called the "Library Technical Report 1" (often known as TR1 for short), was released. While not an official part of the standard, it gives a number of extensions to the standard library, which are expected to be included in the next version of C++. Support for TR1 is growing in almost all currently maintained C++ compilers.

While the C++ language is royalty-free, the standard document itself is not freely available.

Etymology

According to Stroustrup: "the name signifies the evolutionary nature of the changes from C".[4] During C++'s development period, the language had been referred to as "new C", then "C with Classes". The final name is credited to Rick Mascitti (mid-1983) and was first used in December 1983. When Mascitti was questioned informally in 1992 about the naming, he indicated that it was given in a tongue-in-cheek spirit. It stems from C's "++" operator (which increments the value of a variable) and a common naming convention of using "+" to indicate an enhanced computer program. There is no language called "C plus". ABCL/c+ was the name of an earlier, unrelated programming language.

Philosophy

In The Design and Evolution of C++ (1994), Bjarne Stroustrup describes some rules that he uses for the design of C++:

  • C++ is designed to be a statically typed, general-purpose language that is as efficient and portable as C
  • C++ is designed to directly and comprehensively support multiple programming styles (procedural programming, data abstraction, object-oriented programming, and generic programming)
  • C++ is designed to give the programmer choice, even if this makes it possible for the programmer to choose incorrectly
  • C++ is designed to be as compatible with C as possible, therefore providing a smooth transition from C
  • C++ avoids features that are platform specific or not general purpose
  • C++ does not incur overhead for features that are not used (the "zero-overhead principle")
  • C++ is designed to function without a sophisticated programming environment

Inside the C++ Object Model (Lippman, 1996) describes how compilers may convert C++ program statements into an in-memory layout. Compiler authors are, however, free to implement the standard in their own manner.

Standard library

The 1998 ANSI/ISO C++ standard consists of two parts: the core language and the C++ standard library; the latter includes most of the Standard Template Library (STL) and a slightly modified version of the C standard library. Many C++ libraries exist which are not part of the standard, and, using linkage specification, libraries can even be written in languages such as C, Fortran, Pascal, or BASIC. Which of these are supported is compiler dependent.

The C++ standard library incorporates the C standard library with some small modifications to make it work better with the C++ language. Another large part of the C++ library is based on the STL. This provides such useful tools as containers (for example vectors and lists), iterators to provide these containers with array-like access and algorithms to perform operations such as searching and sorting. Furthermore (multi)maps (associative arrays) and (multi)sets are provided, all of which export compatible interfaces. Therefore it is possible, using templates, to write generic algorithms that work with any container or on any sequence defined by iterators. As in C, the features of the library are accessed by using the #include directive to include a standard header. C++ provides 69 standard headers, of which 19 are deprecated.

The STL was originally a third-party library from HP and later SGI, before its incorporation into the C++ standard. The standard does not refer to it as "STL", as it is merely a part of the standard library, but many people still use that term to distinguish it from the rest of the library (input/output streams, internationalization, diagnostics, the C library subset, etc.).

Most C++ compilers provide an implementation of the C++ standard library, including the STL. Compiler-independent implementations of the STL, such as STLPort, also exist. Other projects also produce various custom implementations of the C++ standard library and the STL with various design goals.

Language features

C++ inherits most of C's syntax and the C preprocessor. The following is a Hello world program which uses the C++ standard library stream facility to write a message to standard output:[5][6]

#include <iostream> // provides std::cout
 
int main()
{
	std::cout << "Hello, world!\n";
}


Operators and operator overloading

C++ provides more than 30 operators, covering basic arithmetic, bit manipulation, indirection, comparisons, logical operations and more. Almost all operators can be overloaded for user-defined types, with a few notable exceptions such as member access (. and .*). The rich set of overloadable operators is central to using C++ as a domain specific language. The overloadable operators are also an essential part of many advanced C++ programming techniques, such as smart pointers. Overloading an operator does not change the precedence of calculations involving the operator, nor does it change the number of operands that the operator uses (any operand may however be ignored).

Templates

C++ templates enable generic programming. C++ supports both function and class templates. Templates may be parameterized by types, compile-time constants, and other templates. C++ templates are implemented by instantiation at compile-time. To instantiate a template, compilers substitute specific arguments for a template's parameters to generate a concrete function or class instance. Templates are a powerful tool that can be used for generic programming, template metaprogramming, and code optimization, but this power implies a cost. Template use may increase code size, since each template instantiation produces a copy of the template code: one for each set of template arguments. This is in contrast to run-time generics seen in other languages (e.g. Java) where at compile-time the type is erased and a single template body is preserved.

Templates are different from macros: while both of these compile-time language features enable conditional compilation, templates are not restricted to lexical substitution. Templates are aware of the semantics and type system of their companion language, as well as all compile-time type definitions, and can perform high-level operations including programmatic flow control based on evaluation of strictly type-checked parameters. Macros are capable of conditional control over compilation based on predetermined criteria, but cannot instantiate new types, recurse, or perform type evaluation and in effect are limited to pre-compilation text-substitution and text-inclusion/exclusion. In other words, macros can control compilation flow based on pre-defined symbols but cannot, unlike templates, independently instantiate new symbols. Templates are a tool for static polymorphism (see below) and generic programming.

In addition, templates are a compile time mechanism in C++ which is Turing-complete, meaning that any computation expressible by a computer program can be computed, in some form, by a template metaprogram prior to runtime.

In summary, a template is a compile-time parameterized function or class written without knowledge of the specific arguments used to instantiate it. After instantiation the resulting code is equivalent to code written specifically for the passed arguments. In this manner, templates provide a way to decouple generic, broadly-applicable aspects of functions and classes (encoded in templates) from specific aspects (encoded in template parameters) without sacrificing performance due to abstraction.

Objects

C++ introduces object-oriented (OO) features to C. It offers classes, which provide the four features commonly present in OO (and some non-OO) languages: abstraction, encapsulation, inheritance, and polymorphism. Objects are instances of classes created at runtime. The class can be thought of as a template from which many different individual objects may be generated as a program runs.

Encapsulation

Encapsulation is the hiding of information. C++ implements encapsulation by allowing all members of a class to be declared as either public, private, or protected. A public member of the class is accessible to any function. A private member is accessible only to functions that are members of that class and to functions and classes explicitly granted access permission by the class ("friends"). A protected member is accessible to members of classes that inherit from the class in addition to the class itself and any friends.

The OO principle is that all of the functions (and only the functions) that access the internal representation of a type should be encapsulated within the type definition. C++ supports this (via member functions and friend functions), but does not enforce it: the programmer can declare parts or all of the representation of a type to be public, and is allowed to make public entities that are not part of the representation of the type. Because of this, C++ supports not just OO programming, but other weaker decomposition paradigms, like modular programming.

It is generally considered good practice to make all data private or protected, and to make public only those functions that are part of a minimal interface for users of the class. This hides all the details of data implementation, allowing the designer to later fundamentally change the implementation without changing the interface in any way.

Inheritance

Inheritance allows one data type to acquire properties of other data types. Inheritance from a base class may be declared as public, protected, or private. This access specifier determines whether unrelated and derived classes can access the inherited public and protected members of the base class. Only public inheritance corresponds to what is usually meant by "inheritance". The other two forms are much less frequently used. If the access specifier is omitted, a "class" inherits privately, while a "struct" inherits publicly. Base classes may be declared as virtual; this is called virtual inheritance. Virtual inheritance ensures that only one instance of a base class exists in the inheritance graph, avoiding some of the ambiguity problems of multiple inheritance.

Multiple inheritance is a C++ feature sometimes considered controversial. Multiple inheritance allows a class to be derived from more than one base class; this can result in a complicated graph of inheritance relationships. For example, a "Flying Cat" class can inherit from both "Cat" and "Flying Mammal". Some other languages, such as Java or C#, accomplish something similar (although more limited) by allowing inheritance of multiple interfaces while restricting the number of base classes to one (interfaces, unlike classes, provide only declarations of member functions, no implementation or member data).

Polymorphism

Polymorphism enables one common interface for many implementations, and for objects to act differently under different circumstances.

C++ supports several kinds of static (compile-time) and dynamic (run-time) polymorphisms. Compile-time polymorphism does not allow for certain run-time decisions, while run-time polymorphism typically incurs a performance penalty.

Static polymorphism

Function overloading allows programs to declare multiple functions having the same name (but with different arguments). The functions are distinguished by the number and/or types of their formal parameters. Thus, the same function name can refer to different functions depending on the context in which it is used. The type returned by the function is not used to distinguish overloaded functions.

When declaring a function, a programmer can specify default arguments for one or more parameters. Doing so allows the parameters with defaults to optionally be omitted when the function is called, in which case the default arguments will be used. When a function is called with fewer arguments than there are declared parameters, explicit arguments are matched to parameters in left-to-right order, with any unmatched parameters at the end of the parameter list being assigned their default arguments. In many cases, specifying default arguments in a single function declaration is preferable to providing overloaded function definitions with different numbers of parameters.

Templates in C++ provide a sophisticated mechanism for writing generic, polymorphic code. In particular, through the Curiously Recurring Template Pattern it's possible to implement a form of static polymorphism that closely mimics the syntax for overriding virtual functions. Since C++ templates are type-aware and Turing-complete they can also be used to let the compiler resolve recursive conditionals and generate substantial programs through template metaprogramming.

Dynamic polymorphism

Inheritance

Variable pointers (and references) to a base class type in C++ can refer to objects of any derived classes of that type in addition to objects exactly matching the variable type. This allows arrays and other kinds of containers to hold pointers to objects of differing types. Because assignment of values to variables usually occurs at run-time, this is necessarily a run-time phenomenon.

C++ also provides a dynamic_cast operator, which allows the program to safely attempt conversion of an object into an object of a more specific object type (as opposed to conversion to a more general type, which is always allowed). This feature relies on run-time type information (RTTI). Objects known to be of a certain specific type can also be cast to that type with static_cast, a purely compile-time construct which is faster and does not require RTTI.

Virtual member functions

Ordinarily when a function in a derived class overrides a function in a base class, the function to call is determined by the type of the object. A given function is overridden when there exists no difference, in the number or type of parameters, between two or more definitions of that function. Hence, at compile time it may not be possible to determine the type of the object and therefore the correct function to call, given only a base class pointer; the decision is therefore put off until runtime. This is called dynamic dispatch. Virtual member functions or methods[7] allow the most specific implementation of the function to be called, according to the actual run-time type of the object. In C++, this is commonly done using virtual function tables. If the object type is known, this may be bypassed by prepending a fully qualified class name before the function call, but in general calls to virtual functions are resolved at run time.

In addition to standard member functions, operator overloads and destructors can be virtual. A general rule of thumb is that if any functions in the class are virtual, the destructor should be as well. As the type of an object at its creation is known at compile time, constructors, and by extension copy constructors, cannot be virtual. Nonetheless a situation may arise where a copy of an object needs to be created when a pointer to a derived object is passed as a pointer to a base object. In such a case a common solution is to create a clone() (or similar) function and declare that as virtual. The clone() method creates and returns a copy of the derived class when called.

A member function can also be made "pure virtual" by appending it with = 0 after the closing parenthesis and before the semicolon. Objects cannot be created of a class with a pure virtual function and are called abstract data types. Such abstract data types can only be derived from. Any derived class inherits the virtual function as pure and must provide a non-pure definition of it (and all other pure virtual functions) before objects of the derived class can be created. An attempt to create an object from a class with a pure virtual function or inherited pure virtual function will be flagged as a compile-time error.

Parsing and processing C++ source code

It is relatively difficult to write a good C++ parser with classic parsing algorithms such as LALR(1).[8] This is partly because the C++ grammar is not LALR. Because of this, there are very few tools for analyzing or performing non-trivial transformations (e.g., refactoring) of existing code. One way to handle this difficulty is to choose a different syntax, such as Significantly Prettier and Easier C++ Syntax, which is LALR(1) parsable. More powerful parsers, such as GLR parsers, can be substantially simpler (though slower).

Parsing (in the literal sense of producing a syntax tree) is not the most difficult problem in building a C++ processing tool. Such tools must also have the same understanding of the meaning of the identifiers in the program as a compiler might have. Practical systems for processing C++ must then not only parse the source text, but be able to resolve for each identifier precisely which definition applies (e.g. they must correctly handle C++'s complex scoping rules) and what its type is, as well as the types of larger expressions.

Finally, a practical C++ processing tool must be able to handle the variety of C++ dialects used in practice (such as that supported by the GNU Compiler Collection and that of Microsoft's Visual C++) and implement appropriate analyzers, source code transformers, and regenerate source text. Combining advanced parsing algorithms such as GLR with symbol table construction and program transformation machinery can enable the construction of arbitrary C++ tools.

Compatibility

Producing a reasonably standards-compliant C++ compiler has proven to be a difficult task for compiler vendors in general. For many years, different C++ compilers implemented the C++ language to different levels of compliance to the standard, and their implementations varied widely in some areas such as partial template specialization. Recent releases of most popular C++ compilers support almost all of the C++ 1998 standard.[9]

One particular point of contention is the export keyword, intended to allow template definitions to be separated from their declarations. The first compiler to implement export was Comeau C/C++, in early 2003 (5 years after the release of the standard); in 2004, the beta compiler of Borland C++ Builder X was also released with export. Both of these compilers are based on the EDG C++ front end. It should also be noted that many C++ books provide example code using the keyword export (for example, Beginning ANSI C++ by Ivor Horton) which will not compile in most compilers, but there is no reference to the problem with the keyword export mentioned. Other compilers such as GCC do not support it at all. Herb Sutter, secretary of the C++ standards committee, recommended that export be removed from future versions of the C++ standard,[10] but finally the decision was made to retain it.[11]

In order to give compiler vendors greater freedom, the C++ standards committee decided not to dictate the implementation of name mangling, exception handling, and other implementation-specific features. The downside of this decision is that object code produced by different compilers is expected to be incompatible. There are, however, third party standards for particular machines or operating systems which attempt to standardize compilers on those platforms (for example C++ ABI[12]); some compilers adopt a secondary standard for these items.

With C

C++ is often considered to be a superset of C, but this is not strictly true.[13] Most C code can easily be made to compile correctly in C++, but there are a few differences that cause some valid C code to be invalid in C++, or to behave differently in C++.

One commonly encountered difference is that C allows implicit conversion from void* to other pointer types, but C++ does not. Another common portability issue is that C++ defines many new keywords, such as new and class, that may be used as identifiers (e.g. variable names) in a C program.

Some incompatibilities have been removed by the latest (C99) C standard, which now supports C++ features such as // comments and mixed declarations and code. However, C99 introduced a number of new features that C++ does not support (such as variable-length arrays, native complex-number types, designated initializers and compound literals[14]), so the languages may be diverging more than they are converging. However, at least some of the new C99 features will likely be included in the next version of the C++ standard, C++0x.

In order to intermix C and C++ code, any function declaration or definition that is to be called from/used both in C and C++ must be declared with C linkage by placing it within an extern "C" { ... } block. Such a function may not rely on features depending on name mangling (i.e., function overloading).

Adoption and reception

Criticism

Modern critics of the language raise several points. First, since C++ is based on and largely compatible with C, it inherits most of the criticisms leveled at that language. Taken as a whole, C++ has a large feature set, including all of C, plus a large set of its own additions, in part leading to criticisms of being a "bloated" and complicated language.[citation needed] Bjarne Stroustrup points out that resultant executables don't support these claims of bloat: "I have even seen the C++ version of the 'hello world' program smaller than the C version."[15] The Embedded C++ standard was specified to deal with part of this, but it received criticism for leaving out useful parts of the language that incur no runtime penalty.[16] Because of its large feature set, it is difficult to fully master C++.

While C++ is more complex than some other programming languages, Bjarne Stroustrup points out that "The programming world is far more complex today than it was 30 years ago, and modern programming languages reflect that."[17] The ISO standard of the C++ language is about 310 pages (excluding library). For comparison, the C programming language's is about 160 pages, even though it was designed more than 15 years prior and doesn't consider object-oriented programming.

Other criticism stems from what is missing from C++. For example, the current version of Standard C++ provides no language features to create multi-threaded software. These facilities are present in some other languages including Java, Ada, and C# (see also Lock). It is possible to use operating system calls or third party libraries to do multi-threaded programming, but both approaches may create portability concerns.

C++ is also sometimes compared unfavorably with single-paradigm object-oriented languages such as Smalltalk, Java or Eiffel on the basis that it allows programmers to "mix and match" object-oriented and procedural programming, rather than strictly enforcing a single paradigm. This is part of a wider debate on the relative merits of the two programming styles.[citation needed]

See also

References

  1. ^ C++ The Complete Reference Third Edition, Herbert Schildt, Publisher: Osborne McGraw-Hill.
  2. ^ "Bjarne Stroustrup's FAQ - When was C++ invented?". Retrieved 2006-05-30.
  3. ^ "Trends on C++ Programmers, Developers & Engineers". Retrieved 2008-12-01.
  4. ^ "Bjarne Stroustrup's FAQ - Where did the name "C++" come from?". Retrieved 2008-01-16.
  5. ^ Stroustrup, Bjarne (2000). The C++ Programming Language (Special Edition ed.). Addison-Wesley. p. 46. ISBN 0-201-70073-5. {{cite book}}: |edition= has extra text (help)
  6. ^ Open issues for The C++ Programming Language (3rd Edition) - This code is copied directly from Bjarne Stroustrup's errata page (p. 633). He addresses the use of '\n' rather than std::endl. Also see www.research.att.com and www.delorie.com/djgpp/ for an explanation of the implicit return 0; in the main function. This implicit return is not available in other functions.
  7. ^ Stroustrup, Bjarne (2000). The C++ Programming Language (Special Edition ed.). Addison-Wesley. p. 310. ISBN 0-201-70073-5. A virtual member function is sometimes called a method. {{cite book}}: |edition= has extra text (help)
  8. ^ Parsing C++ at nobugs.org
  9. ^ Herb Sutter (2003-04-15). "C++ Conformance Roundup". Dr. Dobb's Journal. Retrieved 2006-05-30.
  10. ^ Template:PDFlink
  11. ^ "Minutes of J16 Meeting No. 36/WG21 Meeting No. 31, April 7-11, 2003". 2003-04-25. Retrieved 2006-09-04.
  12. ^ "C++ ABI". Retrieved 2006-05-30.
  13. ^ "Bjarne Stroustrup's FAQ - Is C a subset of C++?". Retrieved 2008-01-18.
  14. ^ "C9X -- The New C Standard". Retrieved 27 December 2008.
  15. ^ Why is the code generated for the "Hello world" program ten times larger for C++ than for C?
  16. ^ What do you think of EC++?
  17. ^ Why is C++ so BIG?

Further reading

External links

Template:Integrated development environments for C and C++