home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / TEXT / GLOSS.A < prev    next >
Encoding:
Text File  |  1993-12-01  |  5.5 KB  |  139 lines

  1.  
  2. %F,15,GLOSS.A%A  %F,15,GLOSS.B%B  %F,15,GLOSS.C%C  %F,15,GLOSS.D%D  %F,15,GLOSS.E%E  %F,15,GLOSS.F%F  %F,15,GLOSS.G%G  %F,15,GLOSS.H%H  %F,15,GLOSS.I%I  %F,15,GLOSS.K%K  %F,15,GLOSS.L%L  %F,15,GLOSS.M%M                    %C,1%GLOSSARY
  3. %F,15,GLOSS.N%N  %F,15,GLOSS.O%O  %F,15,GLOSS.P%P  %F,15,GLOSS.Q%Q  %F,15,GLOSS.R%R  %F,15,GLOSS.S%S  %F,15,GLOSS.T%T  %F,15,GLOSS.U%U  %F,15,GLOSS.V%V  %F,15,GLOSS.W%W  %F,15,GLOSS.Z%Z                              %C,1%A
  4. %F,15,GLOSS.Z%Previous / %F,15,GLOSS.B%Next
  5.  
  6. %#abstr%
  7. %C,14%ABSTRACT CLASS
  8. A class with at least one pure virtual function.  It is a
  9. class used as a %F,15,GLOSS.B#base%base_class for other classes.
  10. The abstract class represents a concept; classes derived from
  11. it represent implementations of the concept.  You cannot define
  12. an object of a class type if the class is an abstract class.
  13. %#abstdat%
  14. %C,14%ABSTRACTION (DATA)
  15. A data type with a private representation and a public set of
  16. operations.  The C++ language uses the concept of classes to
  17. implement data abstraction.
  18. %#access%
  19. %C,14%ACCESS
  20. Determines whether or not a class member can be used in an
  21. expression or declaration.
  22.  
  23. %C,14%ACCESS DECLARATION
  24. Used to restore access of base class members.
  25.  
  26. %C,14%ACCESS RESOLUTION
  27. The process by which the accessibility of a particular class
  28. member is determined.
  29.  
  30. %C,14%ACCESS SPECIFIERS
  31. One of the C++ keywords:  public, private, and protected.
  32.  
  33. %C,14%ACCESSIBLE BASE CLASS
  34. A base class is accessible to a particular derived class if all
  35. of its public members are accessible, that is if the base class
  36. public members can be used in member functions of the derived
  37. class.
  38.  
  39. %C,14%ACTUAL ARGUMENT
  40. The argument that appears in the call to a function.
  41.  
  42. %C,14%ADDRESS
  43. A name, label, or number identifying a location in storage, a
  44. device in a system or network, or any other data source.
  45.  
  46. %C,14%AGGREGATE
  47. An array or a class object with no private or protected
  48. members, no constructors, no base classes, and no virtual
  49. functions.
  50.  
  51. %C,14%ALGORITHM
  52. A step-by-step method of performing a required action.  An
  53. algorithm describes a procedure that can be coded in a computer
  54. programming language.
  55.  
  56. %C,14%AMBIGUOUS DERIVATION
  57. Derivation is ambiguous if a class is derived from two or more
  58. base classes that have the same name.
  59. %#ANSCII%
  60. %C,14%AMERICAN NATIONAL STANDARD CODE FOR INFORMATION INTERCHANGE
  61. %C,14%(ASCII)
  62. The code developed by ANSI for information interchange among
  63. data processing systems, data communications systems, and
  64. associated equipment.  The ASCII character set consists of 7-bit
  65. control characters and symbolic characters.
  66. %#amer%
  67. %C,14%AMERICAN NATIONAL STANDARDS INSTITUTE (ANSI)
  68. An organization sponsored by the Computer and Business Equipment
  69. Manufacturers Association through which accredited organizations
  70. create and maintain voluntary industry standards.
  71.  
  72. %C,14%ANSI
  73. See American National Standards Institute.
  74.  
  75. %C,14%ANONYMOUS UNION
  76. A union without a class name.  It must not be followed by a
  77. declarator.
  78. %#argument%
  79. %C,14%ARGUMENT
  80. A value passed between a calling routine and a called routine.
  81.  
  82. %C,14%ARGUMENT DECLARATION
  83. See %F,15,GLOSS.P#parad%parameter_declaration%C,5%.
  84.  
  85. %C,14%ARGUMENT LIST
  86. The list of objects that is passed to a function.  In a function
  87. call, the argument list appears in the function call operator ().
  88.  
  89. %C,14%ARITHMETIC OBJECT
  90. An integral object or objects having the type float, double, or
  91. long double.
  92.  
  93. %C,14%ARRAY
  94. A variable that contains an ordered group of data objects.  All
  95. data items, or elements, in an array have the same data type.
  96.  
  97. %C,14%ARRAY ELEMENT
  98. A single data item in an
  99. array.
  100.  
  101. %C,14%ASCII
  102. See %F,15,GLOSS.A#ANSCII%American_National_Standard_Code_for_Information
  103. %F,15,GLOSS.A#ANSCII%Interchange%C,5%.
  104.  
  105. %C,14%ASSEMBLER LANGUAGE
  106. A symbolic programming language in which the set of instructions
  107. includes the instructions of the machine and whose data structures
  108. correspond directly to the storage and registers of the machine.
  109.  
  110. %C,14%ASSIGNMENT CONVERSION
  111. A change to the form of the right operand that makes the right
  112. operand have the same data type as the left operand.
  113.  
  114. %C,14%ASSIGNMENT EXPRESSION
  115. An operation that stores the value of the right operand in the
  116. storage location specified by the left operand.
  117. %#asarray%
  118. %C,14%ASSOCIATIVE ARRAY
  119. An array in which each element is a data structure containing
  120. more than one object.  Contrast with %F,15,GLOSS.P#pararray%parallel_arrays%C,5%.
  121.  
  122. %C,14%ASSOCIATIVITY
  123. The order for grouping operands with an operator.  Associativity
  124. can be either left-to-right or right-to-left.
  125. %#autoconv%
  126. %C,14%AUTOMATIC CONVERSION
  127. A conversion that the compiler performs automatically without
  128. any specific instruction in the code.  Integral promotions and
  129. arithmetic conversion are kinds of automatic conversions.
  130.  
  131. %C,14%AUTOMATIC OBJECT
  132. An object of storage class auto.  An automatic object is often
  133. referred to as a local object.  The default %F,15,GLOSS.S#storclsp%storage_class_specifier
  134. for objects declared in a %F,15,GLOSS.B#block%block_statement is auto.
  135.  
  136. %F,15,GLOSS.A%A  %F,15,GLOSS.B%B  %F,15,GLOSS.C%C  %F,15,GLOSS.D%D  %F,15,GLOSS.E%E  %F,15,GLOSS.F%F  %F,15,GLOSS.G%G  %F,15,GLOSS.H%H  %F,15,GLOSS.I%I  %F,15,GLOSS.K%K  %F,15,GLOSS.L%L  %F,15,GLOSS.M%M
  137. %F,15,GLOSS.N%N  %F,15,GLOSS.O%O  %F,15,GLOSS.P%P  %F,15,GLOSS.Q%Q  %F,15,GLOSS.R%R  %F,15,GLOSS.S%S  %F,15,GLOSS.T%T  %F,15,GLOSS.U%U  %F,15,GLOSS.V%V  %F,15,GLOSS.W%W  %F,15,GLOSS.Z%Z
  138. %F,15,GLOSS.Z%Previous / %F,15,GLOSS.B%Next
  139.