色1S01E0 1 Genera 2 Anrex B recomn nds lower an the capacity of co 2 imple Annex E says what chara are valid in universal-character names in C+idemtifiers (2.10 1.6 Svntas netatio ioralcexpesiotneeloasodimbraec ualfied-d is ane meh ienenirednlimiesseg.dclan nee of deelara rated by commas (e.g ion-fist s a sequence of expre in the c ber of h n-det a unigue address Nove:the representation of types is described in 3.9. 1.8 The C++objcet model intro.obijcct
ISO/IEC 14882:2003(E) ISO/IEC 1.5 Structure of this International Standard 1 General 1.5 Structure of this International Standard [intro.structure] 1 Clauses 2 through 16 describe the C + + programming language. That description includes detailed syntactic specifications in a form described in 1.6. For convenience, Annex A repeats all such syntactic specifications. 2 Clauses 17 through 27 (the library clauses) describe the Standard C + + library, which provides definitions for the following kinds of entities: macros (16.3), values (clause 3), types (8.1, 8.3), templates (clause 14), classes (clause 9), functions (8.3.5), and objects (clause 7). 3 Annex B recommends lower bounds on the capacity of conforming implementations. 4 Annex C summarizes the evolution of C + + since its first published description, and explains in detail the differences between C + + and C. Certain features of C + + exist solely for compatibility purposes; Annex D describes those features. 5 Finally, Annex E says what characters are valid in universal-character names in C + + identifiers (2.10). 6 Throughout this International Standard, each example is introduced by “[Example:” and terminated by “]”. Each note is introduced by “[Note:” and terminated by “]”. Examples and notes may be nested. 1.6 Syntax notation [syntax] 1 In the syntax notation used in this International Standard, syntactic categories are indicated by italic type, and literal words and characters in constant width type. Alternatives are listed on separate lines except in a few cases where a long set of alternatives is presented on one line, marked by the phrase “one of.” An optional terminal or nonterminal symbol is indicated by the subscript “opt,” so { expressionopt } indicates an optional expression enclosed in braces. 2 Names for syntactic categories have generally been chosen according to the following rules: — X-name is a use of an identifier in a context that determines its meaning (e.g. class-name, typedefname). — X-id is an identifier with no context-dependent meaning (e.g. qualified-id). — X-seq is one or more X’s without intervening delimiters (e.g. declaration-seq is a sequence of declarations). — X-list is one or more X’s separated by intervening commas (e.g. expression-list is a sequence of expressions separated by commas). 1.7 The C + + memory model [intro.memory] 1 The fundamental storage unit in the C + + memory model is the byte. A byte is at least large enough to contain any member of the basic execution character set and is composed of a contiguous sequence of bits, the number of which is implementation-defined. The least significant bit is called the low-order bit; the most significant bit is called the high-order bit. The memory available to a C + + program consists of one or more sequences of contiguous bytes. Every byte has a unique address. 2 [Note: the representation of types is described in 3.9. ] 1.8 The C + + object model [intro.object] 1 The constructs in a C + + program create, destroy, refer to, access, and manipulate objects. An object is a region of storage. [Note: A function is not an object, regardless of whether or not it occupies storage in the way that objects do. ] An object is created by a definition (3.1), by a new-expression (5.3.4) or by the implementation (12.2) when needed. The properties of an object are determined when the object is created. An object can have a name (clause 3). An object has a storage duration (3.7) which influences its lifetime (3.8). An object has a type (3.9). The term object type refers to the type with which the object is created. 4
ISOTE IS0MEC14882:2003E Ganerat 1$The C+object mode For every obiect x.there is Irxisacompleteoje,benxishecompleteobjetofx se.the com 4 5 eaedmdeanecot
ISO/IEC ISO/IEC 14882:2003(E) 1 General 1.8 The C + + object model Some objects are polymorphic (10.3); the implementation generates information associated with each such object that makes it possible to determine that object’s type during program execution. For other objects, the interpretation of the values found therein is determined by the type of the expressions (clause 5) used to access them. 2 Objects can contain other objects, called sub-objects. A sub-object can be a member sub-object (9.2), a base class sub-object (clause 10), or an array element. An object that is not a sub-object of any other object is called a complete object. 3 For every object x, there is some object called the complete object of x, determined as follows: — If x is a complete object, then x is the complete object of x. — Otherwise, the complete object of x is the complete object of the (unique) object that contains x. 4 If a complete object, a data member (9.2), or an array element is of class type, its type is considered the most derived class, to distinguish it from the class type of any base class subobject; an object of a most derived class type is called a most derived object. 5 Unless it is a bit-field (9.6), a most derived object shall have a non-zero size and shall occupy one or more bytes of storage. Base class sub-objects may have zero size. An object of POD4) type (3.9) shall occupy contiguous bytes of storage. 6 [Note: C + + provides a variety of built-in types and several ways of composing new types from existing types (3.9). ] 1.9 Program execution [intro.execution] 1 The semantic descriptions in this International Standard define a parameterized nondeterministic abstract machine. This International Standard places no requirement on the structure of conforming implementations. In particular, they need not copy or emulate the structure of the abstract machine. Rather, conforming implementations are required to emulate (only) the observable behavior of the abstract machine as explained below.5) 2 Certain aspects and operations of the abstract machine are described in this International Standard as implementation-defined (for example, sizeof(int)). These constitute the parameters of the abstract machine. Each implementation shall include documentation describing its characteristics and behavior in these respects. Such documentation shall define the instance of the abstract machine that corresponds to that implementation (referred to as the ‘‘corresponding instance’’ below). 3 Certain other aspects and operations of the abstract machine are described in this International Standard as unspecified (for example, order of evaluation of arguments to a function). Where possible, this International Standard defines a set of allowable behaviors. These define the nondeterministic aspects of the abstract machine. An instance of the abstract machine can thus have more than one possible execution sequence for a given program and a given input. 4 Certain other operations are described in this International Standard as undefined (for example, the effect of dereferencing the null pointer). [Note: this International Standard imposes no requirements on the behavior of programs that contain undefined behavior. ] 5 A conforming implementation executing a well-formed program shall produce the same observable behavior as one of the possible execution sequences of the corresponding instance of the abstract machine with the same program and the same input. However, if any such execution sequence contains an undefined operation, this International Standard places no requirement on the implementation executing that program __________________ 4) The acronym POD stands for “plain old data.” 5) This provision is sometimes called the “as-if” rule, because an implementation is free to disregard any requirement of this International Standard as long as the result is as if the requirement had been obeyed, as far as can be determined from the observable behavior of the program. For instance, an actual implementation need not evaluate part of an expression if it can deduce that its value is not used and that no side effects affecting the observable behavior of the program are produced. 5
IS01DC14832:2003HE ⊙1S01r0 I》Proeram esecutiun I Geaera evalusted until execu ns are comolete an pmno比Raua 13 6
ISO/IEC 14882:2003(E) ISO/IEC 1.9 Program execution 1 General with that input (not even with regard to operations preceding the first undefined operation). 6 The observable behavior of the abstract machine is its sequence of reads and writes to volatile data and calls to library I/O functions.6) 7 Accessing an object designated by a volatile lvalue (3.10), modifying an object, calling a library I/O function, or calling a function that does any of those operations are all side effects, which are changes in the state of the execution environment. Evaluation of an expression might produce side effects. At certain specified points in the execution sequence called sequence points, all side effects of previous evaluations shall be complete and no side effects of subsequent evaluations shall have taken place.7) 8 Once the execution of a function begins, no expressions from the calling function are evaluated until execution of the called function has completed.8) 9 When the processing of the abstract machine is interrupted by receipt of a signal, the values of objects with type other than volatile sig_atomic_t are unspecified, and the value of any object not of volatile sig_atomic_t that is modified by the handler becomes undefined. 10 An instance of each object with automatic storage duration (3.7.2) is associated with each entry into its block. Such an object exists and retains its last-stored value during the execution of the block and while the block is suspended (by a call of a function or receipt of a signal). 11 The least requirements on a conforming implementation are: — At sequence points, volatile objects are stable in the sense that previous evaluations are complete and subsequent evaluations have not yet occurred. — At program termination, all data written into files shall be identical to one of the possible results that execution of the program according to the abstract semantics would have produced. — The input and output dynamics of interactive devices shall take place in such a fashion that prompting messages actually appear prior to a program waiting for input. What constitutes an interactive device is implementation-defined. [Note: more stringent correspondences between abstract and actual semantics may be defined by each implementation. ] 12 A full-expression is an expression that is not a subexpression of another expression. If a language construct is defined to produce an implicit call of a function, a use of the language construct is considered to be an expression for the purposes of this definition. 13 [Note: certain contexts in C + + cause the evaluation of a full-expression that results from a syntactic construct other than expression (5.18). For example, in 8.5 one syntax for initializer is ( expression-list ) but the resulting construct is a function call upon a constructor function with expression-list as an argument list; such a function call is a full-expression. For example, in 8.5, another syntax for initializer is = initializer-clause but again the resulting construct might be a function call upon a constructor function with one assignmentexpression as an argument; again, the function call is a full-expression. ] __________________ 6) An implementation can offer additional library I/O functions as an extension. Implementations that do so should treat calls to those functions as ‘‘observable behavior’’ as well. 7) Note that some aspects of sequencing in the abstract machine are unspecified; the preceding restriction upon side effects applies to that particular execution sequence in which the actual code is generated. Also note that when a call to a library I/O function returns, the side effect is considered complete, even though some external actions implied by the call (such as the I/O itself) may not have completed yet. 8) In other words, function executions do not interleave with each other. 6
IS0MEC14882:2003E 15 he expre a-【{a+327651+b): 117 10) pying call syntax ars in the usinthebill-in ofthenexp(.555.1651here
ISO/IEC ISO/IEC 14882:2003(E) 1 General 1.9 Program execution 14 [Note: the evaluation of a full-expression can include the evaluation of subexpressions that are not lexically part of the full-expression. For example, subexpressions involved in evaluating default argument expressions (8.3.6) are considered to be created in the expression that calls the function, not the expression that defines the default argument. ] 15 [Note: operators can be regrouped according to the usual mathematical rules only where the operators really are associative or commutative.9) For example, in the following fragment int a, b; /*...*/ a = a + 32760 + b + 5; the expression statement behaves exactly the same as a = (((a + 32760) + b) + 5); due to the associativity and precedence of these operators. Thus, the result of the sum (a + 32760) is next added to b, and that result is then added to 5 which results in the value assigned to a. On a machine in which overflows produce an exception and in which the range of values representable by an int is [–32768,+32767], the implementation cannot rewrite this expression as a = ((a + b) + 32765); since if the values for a and b were, respectively, –32754 and –15, the sum a + b would produce an exception while the original expression would not; nor can the expression be rewritten either as a = ((a + 32765) + b); or a = (a + (b + 32765)); since the values for a and b might have been, respectively, 4 and –8 or –17 and 12. However on a machine in which overflows do not produce an exception and in which the results of overflows are reversible, the above expression statement can be rewritten by the implementation in any of the above ways because the same result will occur. ] 16 There is a sequence point at the completion of evaluation of each full-expression10). 17 When calling a function (whether or not the function is inline), there is a sequence point after the evaluation of all function arguments (if any) which takes place before execution of any expressions or statements in the function body. There is also a sequence point after the copying of a returned value and before the execution of any expressions outside the function11). Several contexts in C + + cause evaluation of a function call, even though no corresponding function call syntax appears in the translation unit. [Example: evaluation of a new expression invokes one or more allocation and constructor functions; see 5.3.4. For another example, invocation of a conversion function (12.3.2) can arise in contexts in which no function call syntax appears. ] The sequence points at function-entry and function-exit (as described above) are features of the function calls as evaluated, whatever the syntax of the expression that calls the function might be. 18 In the evaluation of each of the expressions a && b a || b a ? b : c a , b using the built-in meaning of the operators in these expressions (5.14, 5.15, 5.16, 5.18), there is a sequence __________________ 9) Overloaded operators are never assumed to be associative or commutative. 10) As specified in 12.2, after the "end-of-full-expression" sequence point, a sequence of zero or more invocations of destructor functions for temporary objects takes place, usually in reverse order of the construction of each temporary object. 11) The sequence point at the function return is not explicitly specified in ISO C, and can be considered redundant with sequence points at full-expressions, but the extra clarity is important in C + +. In C + +, there are more ways in which a called function can terminate its execution, such as the throw of an exception. 7
ISOVIEC 14882:2003(E 91S0E0 1 Genera poimlanerevalalionofroefinepreson 1.10 Acknowiedgments [intro.ack] 1 8
ISO/IEC 14882:2003(E) ISO/IEC 1.9 Program execution 1 General point after the evaluation of the first expression12). 1.10 Acknowledgments [intro.ack] 1 The C + + programming language as described in this International Standard is based on the language as described in Chapter R (Reference Manual) of Stroustrup: The C + + Programming Language (second edition, Addison-Wesley Publishing Company, ISBN 0–201–53992–6, copyright 1991 AT&T). That, in turn, is based on the C programming language as described in Appendix A of Kernighan and Ritchie: The C Programming Language (Prentice-Hall, 1978, ISBN 0–13–110163–3, copyright 1978 AT&T). 2 Portions of the library clauses of this International Standard are based on work by P.J. Plauger, which was published as The Draft Standard C + + Library (Prentice-Hall, ISBN 0–13–117003–1, copyright 1995 P.J. Plauger). 3 All rights in these originals are reserved. __________________ 12) The operators indicated in this paragraph are the built-in operators, as described in clause 5. When one of these operators is overloaded (clause 13) in a valid context, thus designating a user-defined operator function, the expression designates a function invocation, and the operands form an argument list, without an implied sequence point between them. 8