C/C++
floyd.lst
Associated article: Comparing Object-oriented Languages
Tags: C/C++
_COMPARING OBJECT-ORIENTED LANGUAGES_
by Michael Floyd
[LISTING ONE]
C++ Implementation by David Betz (Dr. Dobb's Journal)
#include <iostream.h>
/* any object that will appear in a list must inherit from this class */
class MyListData {
public:
virtual void Print(...


