CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Paul McKenzie

Search: Search took 3.94 seconds.

  1. Re: Cannot Instantiate abstract Object?

    Yes, templates. You're using in your code current code the very thing that eliminates the need for god objects in C++.

    Sort of like using std::string to implement char array handling (i.e....
  2. Re: Cannot Instantiate abstract Object?

    What compiler are you using (compiler, version)? This should not have compiled:


    template<class T> Array<T>::Array(unsigned int array_length, unsigned int array_base = 0)

    You're not allowed...
  3. Re: Cannot Instantiate abstract Object?

    1) Why is the base class "Stack" public virtual?
    2) What is "array.h"? "stack.h"? They are important for us to see them, so as to know exactly what you're trying to compile.

    Regards,

    Paul...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured