home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 16084 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  966 b 

  1. Path: wintermute.ecs.fullerton.edu!titan!grosin
  2. From: grosin@titan (Gil Rosin)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: How do I put DIFFERENT classes in the same linked list?
  5. Date: 9 Apr 1996 14:18:20 GMT
  6. Organization: California State University at Fullerton
  7. Message-ID: <4kdrjc$7cf@wintermute.ecs.fullerton.edu>
  8. References: <4ka938$bj6@wintermute.ecs.fullerton.edu> <4kb8cg$2mp@cocoa.brown.edu>
  9. NNTP-Posting-Host: titan.ecs.fullerton.edu
  10. X-Newsreader: TIN [version 1.2 PL2]
  11.  
  12. Jeremy Rothman (cs032137@cs.brown.edu) wrote:
  13. : In article <4ka938$bj6@wintermute.ecs.fullerton.edu>,
  14. : Gil Rosin <grosin@titan> wrote:
  15. : >class A
  16. : > {
  17. : >  public:
  18. : >    A *next;
  19. : >    A *prev;
  20. : >    void Print();
  21. : > };
  22.  
  23. : I think that your problem is that you need to make the Print function virtual.
  24.  
  25. : -- Jeremy Rothman
  26. :    Jeremy_Rothman@brown.edu
  27.  
  28. Thanks for all the help guys, I just need to get some time to completely 
  29. understand virtual functions, but that did the trick.
  30.  
  31.  
  32.