Author:halw

Date:2009-10-04T17:32:39.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@319 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
halw
2009-10-04 17:32:39 +00:00
parent 3b9a3eca2f
commit bb8ce730c0
2 changed files with 21 additions and 1 deletions

View File

@@ -93,7 +93,7 @@ class
OLD_FASHIONED_LIST [G]
</code>
The class header is introduced by the keyword "class", which in turn can be preceded by one of three keywords which mark the class as <code>deferred</code>, <code>expanded</code>, or <code>external</code>. In our example, the class has none of these markings, so it is an effective class whose instances are access by reference.
The class header is introduced by the keyword "class", which in turn can be preceded by one of three keywords which mark the class as <code>deferred</code>, <code>expanded</code>, or <code>frozen</code>. In our example, the class has none of these markings, so it is an effective class whose instances are access by reference.
The keyword class is followed by the class name, in this case "<code>OLD_FASHIONED_LIST</code>".