sakkinen@tukki.jyu.fi (Markku Sakkinen) (09/20/89)
In article <4557@orca.WV.TEK.COM> brucec@demiurge.WV.TEK.COM (Bruce Cohen) writes: > [...] >There is also a regrettable tendency even among the well-informed to be >careless in their use of OO terminalology (even when the proponents of >different languages agree on the meaning of the terms). I find a classic > [...] >Now, as you can see from *my* terminology, I learned Smalltalk as a first >OOL, and I tend to hark back to it. I find that I have to sometimes, >because C++ terminology is either impoverished (I'd much rather say >"superclass", than "immediately ancestral base class"), or the meaning of >terms is fuzzy from ambiguous use (many people use "object" and "class" >interchangeably to mean "instance of class object"). The regrettably ambiguous use of the word 'class' stems from Stroustrup's original book, and is perhaps caused by the fact that classes are no first-class runtime citizens in C++ (as opposed to Smalltalk). Another not so well chosen term in C++ jargon is 'member' (or rather, the precise meaning given to 'member' is not well chosen). I would also prefer 'subclass' to 'derived class': if a class X consists of an array of class Y objects, say, equipped with some member functions, then one could also like to say that X is "derived" from Y. If computer science followed the pattern of biology as regards nomenclature, then the first name given to a correctly identified and described "species" would remain official. In the case of OOP, the terms coined for Simula in 1966 - 1968 should have precedence over newer names for the same things. In my opinion, the justification for such Smalltalk terminology as "message passing" and "methods" is dubious. Unfortunately, a convergence of terminology is not in sight. An example comes from the Modula-3 Report: the meanings of the words 'object' and 'variable' are exchanged with respect to e.g. Smalltalk. That certainly made it difficult to read the report at first! > [...] (I can essentially agree with everything Cohen wrote.) Markku Sakkinen Department of Computer Science University of Jyvaskyla (a's with umlauts) Seminaarinkatu 15 SF-40100 Jyvaskyla (umlauts again) Finland
dan@oresoft.uu.net (Daniel Elbaum) (09/22/89)
In article <1333@tukki.jyu.fi> markku@jytko.jyu.fi (Markku Sakkinen) SAKKINEN@FINJYU.bitnet (alternative) writes: :In article <4557@orca.WV.TEK.COM> brucec@demiurge.WV.TEK.COM (Bruce Cohen) writes: :> [...] :>(I'd much rather say "superclass", than "immediately ancestral base class") :> ... :I would also prefer 'subclass' to 'derived class': if a class X consists :of an array of class Y objects, say, equipped with some member functions, :then one could also like to say that X is "derived" from Y. 'super-' and 'sub-' class terminology can introduce confusion. If X is a a base class of Y, then a Y is an X but not vice-versa, and so X is the more general of the two. On the other hand, Y is a superset of X; every Y has an X in it, so you could say that X is a subclass of Y. The 'base' and 'derived' terms are unambiguous and adequate. I find geneological terminology more useful, under which X is the 'parent' of Y and any base class of X is a 'grandparent'. After all, kinship structure is the basis for our notion of hierarchy and inheritance. -- Spa link snot the temper tent, a few cannery doubt lowed. ({uunet,tektronix,reed,sun!nosun,osu-cis,psu-cs}!oresoft!(dan)@oresoft.uu.net)
ok@cs.mu.oz.au (Richard O'Keefe) (09/22/89)
In article <1989Sep21.185448.13515@oresoft.uu.net>, dan@oresoft.uu.net (Daniel Elbaum) writes: > 'super-' and 'sub-' class terminology can introduce confusion. > If X is a a base class of Y, then a Y is an X but not vice-versa, > and so X is the more general of the two. Which is to say that the set of Xs is a SUPERset of the set of Ys. Which is to say that "X is a superclass of Y" goes in exactly the right direction. > On the other hand, Y is a superset of X; No, the set of Ys is a *SUB*set of the set of Xs. > The 'base' and 'derived' terms are unambiguous and adequate. In C++ this may well be so. In general, it is possible to derive more general structures from more specific ones by ``forgetting'' unwanted parts, so in other languages ``derived'' may not be so suggestive. And the context was terminology *across* languages.
johnson@p.cs.uiuc.edu (09/24/89)
> Written 1:54 pm Sep 21, 1989 by dan@oresoft.uu.net >'super-' and 'sub-' class terminology can introduce confusion. >If X is a a base class of Y, then a Y is an X but not vice-versa, >and so X is the more general of the two. On the other hand, >Y is a superset of X; every Y has an X in it, so you could say >that X is a subclass of Y. Y is NOT a superset of X. For Y to be a superset of X, it would have to be the case that every X would be a Y, and you just said that was not true. The fact that C++ implements each Y by using X as a component certainly does not make Y be a superset of X. Suppose that Y had a member that was an object of class Z. Would that make Y a superset of Z? The several dozen C++ programmers around here all say "superclass" and "subclass" instead of "base class" and "derived class". here = Department of Computer Science, University of Illinois at Urbana-Champaign
sakkinen@tukki.jyu.fi (Markku Sakkinen) (09/28/89)
In article <1989Sep21.185448.13515@oresoft.uu.net> dan@oresoft.uu.net (Daniel Elbaum) writes: >In article <1333@tukki.jyu.fi> markku@jytko.jyu.fi (Markku Sakkinen) SAKKINEN@FINJYU.bitnet (alternative) writes: >:In article <4557@orca.WV.TEK.COM> brucec@demiurge.WV.TEK.COM (Bruce Cohen) writes: >:> [...] >:>(I'd much rather say "superclass", than "immediately ancestral base class") >:> ... > >:I would also prefer 'subclass' to 'derived class': if a class X consists >:of an array of class Y objects, say, equipped with some member functions, >:then one could also like to say that X is "derived" from Y. > >'super-' and 'sub-' class terminology can introduce confusion. >If X is a a base class of Y, then a Y is an X but not vice-versa, >and so X is the more general of the two. On the other hand, >Y is a superset of X; every Y has an X in it, so you could say >that X is a subclass of Y. Inheritance in most OOPL's does not guarantee an "is-a" relationship: it is therefore that 'super-' and 'sub-' class terminology may indeed cause confusion (supertype - subtype). This matter has been discussed a lot recently, mainly in comp.lang.eiffel, I think. Current C++ seems to take the position that if any public member of a base class is made protected or private in a derived class, then the derived class is not regarded as a subclass. This means that a derived class object cannot be used where a base class object it expected. I think this view is very sensible. In Daniel's last statement above, there seems to be a confusion between the "is-part-of" and "is-a" relationships. This confusion is difficult to avoid: e.g. the Wiener and Pinson book falls into the trap in the very first example it tries to give about inheritance. >The 'base' and 'derived' terms are unambiguous and adequate. I >find geneological terminology more useful, under which X is the >'parent' of Y and any base class of X is a 'grandparent'. After >all, kinship structure is the basis for our notion of hierarchy >and inheritance. The terms 'parent' and 'child' are used in some of the literature, and might me the preferable ones. They don't imply the additional meaning that 'superclass' and 'subclass' may do. The terms 'base' and 'derived' are peculiar to the C++ terminology, as far as I know. Markku Sakkinen Department of Computer Science University of Jyvaskyla (a's with umlauts) Seminaarinkatu 15 SF-40100 Jyvaskyla (umlauts again) Finland