Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!cunixf.cc.columbia.edu!cunixd.cc.columbia.edu!jtt From: jtt@cunixd.cc.columbia.edu (James T. Tanis) Newsgroups: comp.sys.mac.programmer Subject: C++ vs Think C 4.0 Question Message-ID: <1990Nov27.040144.27236@cunixf.cc.columbia.edu> Date: 27 Nov 90 04:01:44 GMT Sender: news@cunixf.cc.columbia.edu (The Daily News) Organization: Columbia University Lines: 23 Summary:Where is "inherited" from? I'm interested in learning c++, but in reading various stuff about it, I have yet to encounter the "inherited" scope specifier, ubiquitous in TCL programs. Is there, in fact, no way in 'real' c++ to just call the same function in a base class? I can see how this migh cause some trouble with multiple inheritance, also, I know that you can call a base class function by specifying it's name: class x: public y { ..... }; and later, in a method of x y::method(); but what I want to know is if inherited::method(); will accomplish the same thing. THanks! -JT