A question about inheritance with template

T

Tony Johansson

Hello experts!

I have two class template below with names Array and CheckedArray.
The class template CheckedArray is derived from the class template Array
which is the base class

This program works fine but there in one thing that I'm unsure about
and that is the inheritance statement.
What difference is it if I have this construction
class CheckedArray : public Array<T>
compared to this construction. .
class CheckedArray : public Array
Note the type parameter <T> has been removed

I don't get any compile error or run time error if I use the
last statement that with the missing <T> for the base class
See definition for the class template CheckedArray
about this class CheckedArray : public Array<T>


From here to the end is code for the two class templates Array and
CheckedArray
**************************************
Here start the definition of the class template Array
***************************************
template <typename T>
class Array
{
public:
Array(int s=100) : size(s)
{ array = new T[size]; }

Array(const Array<T>& ar) : size(ar.size)
{
array = new T[ar.size];
for(int i=0; i<size; i++)
array = ar.array;
}

bool operator==(const Array<T>& ar)
{
for (int i=0; i<size; i++)
if (array != ar.array)
return false;
return true;
}

Array<T>& operator=(const Array<T>& ar)
{
if (this == &ar)
return *this;
if (size != ar.size)
{
size = ar.size;
delete[] array;
array = new T[size];
for(int i=0; i<size; i++)
array = ar.array;
return *this;
}
}

virtual ~Array()
{ delete[] array; }

virtual const T& operator[](int i) const
{ return array; }

virtual T& operator[](int i)
{ return array; }

int getSize() const
{ return size; }

typedef T element_type;

protected:
int size;
T* array;
};
*******************************************************************
Here start the definition of the class template CheckedArray
********************************************************************
template <typename T>
//class CheckedArray : public Array // Alternative 1
class CheckedArray : public Array<T> // Alternative 2

{
public:
CheckedArray(int = 100);
CheckedArray(const CheckedArray<T>&);
CheckedArray<T>& operator=(const CheckedArray<T>&);
virtual ~CheckedArray();
virtual const T& operator[](int) const;
virtual T& operator[](int);
bool operator==(const CheckedArray<T>&);
};

template <typename T>
bool operator==(const CheckedArray<T>&, const CheckedArray<T>&);

template <typename T>
bool operator!=(const CheckedArray<T>&, const CheckedArray<T>&);

template <typename T>
CheckedArray<T>::CheckedArray(int size) : Array<T>(size) {}

template <typename T>
CheckedArray<T>::CheckedArray(const CheckedArray<T>& ar) : Array<T>(ar) {}

template <typename T>
CheckedArray<T>& CheckedArray<T>::eek:perator=(const CheckedArray<T>& ar)
{
if (this == &ar)
return *this;
if (size != ar.size() ) cout << "Error" << endl;
Array<T>::eek:perator=(ar);
return *this;
}

template <typename T>
bool CheckedArray<T>::eek:perator==(const CheckedArray<T>& ar)
{
if (getSize() != ar.getSize() ) cout << "error" << endl;
return Array<T>::eek:perator==(ar);
}

template <typename T>
CheckedArray<T>::~CheckedArray() {}

template <typename T>
T& CheckedArray<T>::eek:perator[](int i)
{
if (i < 0 || i >= size) cout << "error" << endl;
return array;
}

template <typename T>
const T& CheckedArray<T>::eek:perator[](int i) const
{
if (i < 0 || i >= size) cout << "error" << endl;
return array;
}

template <typename T>
bool operator!=(const CheckedArray<T>& ar1, const CheckedArray<T>& ar2)
{ return !(ar1 == ar2); }

Many thanks

//Tony
 
M

Maxim Yegorushkin

Tony said:
Hello experts!

I have two class template below with names Array and CheckedArray.
The class template CheckedArray is derived from the class template Array
which is the base class

This program works fine but there in one thing that I'm unsure about
and that is the inheritance statement.
What difference is it if I have this construction
class CheckedArray : public Array<T>
compared to this construction. .
class CheckedArray : public Array
Note the type parameter <T> has been removed

I don't get any compile error or run time error if I use the
last statement that with the missing <T> for the base class
See definition for the class template CheckedArray
about this class CheckedArray : public Array<T>

You don't get any error because you don't instantiate CheckedArray. A
conforming compiler probably should issue an error, because in the
later case Array is not argument dependent and should be looked up at
the point of CheckedArray's declaration. But some compilers defer the
lookup till instantiation time.

Try instatiating a CheckedArray by adding a line with:

template class CheckedArray<int>;
 
T

Tony Johansson

Maxim Yegorushkin said:
You don't get any error because you don't instantiate CheckedArray. A
conforming compiler probably should issue an error, because in the
later case Array is not argument dependent and should be looked up at
the point of CheckedArray's declaration. But some compilers defer the
lookup till instantiation time.

Try instatiating a CheckedArray by adding a line with:

template class CheckedArray<int>;

What do you mean with this template class CheckedArray<int>; ?
Explain that to me?
Is it to instansiate an object of class template CheckedArray
like CheckedArray<int> c(1);

When I do add this statement CheckedArray<int> c(1);
to the main program I get compile error if I use CheckedArray : public Array
and that is what you pointed out to me. I had forgot to do so in the main
program

Many thanks

//Tony
 
B

benben

Ok, if you instantiate a type, you get an object; if you instantiate a class
template, you get a type (class type).

Given

template <typename T>
class stack{ /* ... */ };

stack<int> buff;
stack<string> contacts;
stack<stack<bool> > freak;

then
* stack is NOT a type, its a class template;
* stack<int>, stack<string>, stack<stack<bool> > are types, used just as
int and char;
* buff, contacts and freak are objects (variables).

Now, because stack<int>, stack<string> and stack<stack<bool> > are class
types, you can inherit from them:

class contact_list: public stack<string>
{ /* ... */ };

The derive class can itself be an instantiation of a class template:

template <typename T>
class improved_stack: private stack<T>
{ /* ... */ };

Therefore, improved_stack<int> derives from stack<int>,
improved_stack<string> derives from stack<string>...

However, you can't inherit from a non-type, such as a class template:

class silly_stack:
private stack //error, stack of what?
{ /* ... */ };

Regards,
Ben

P.S. I would like to kindly recommand you to read some book on templates,
C++ Templates, The Complete Guide by Vandevoorde and Josuttis is joy to
read!
 
M

Maxim Yegorushkin

Tony Johansson wrote:

[]
What do you mean with this template class CheckedArray<int>; ?
Explain that to me?

This syntax is explicit template instantiation. You make a compiler
instantiate a template and all its non template member functions.
Is it to instansiate an object of class template CheckedArray
like CheckedArray<int> c(1);

No. Explicit instantiation does not yield an object.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top