473,419 Members | 1,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,419 software developers and data experts.

std::list of template class

In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;

........
}

template < class Contents class Tree{
list < Tree_node < Contents ;

........
}

on what microsoft VC++ compiler complains with error message
error C2079: 'child_list' uses undefined class 'list<class
BTree_node<int>,class std::allocator<class BTree_node<int >'
when trying to instantiate
Tree <inttree;

What is the workaround for this?
Thanks in advance

Jan 21 '07 #1
7 2949
al*****@pisem.net wrote:
In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;
Do you mean:

list < Tree_node < Contents children;
^^^^
.......
}

template < class Contents class Tree{
list < Tree_node < Contents ;

.......
}

on what microsoft VC++ compiler complains with error message
error C2079: 'child_list' uses undefined class 'list<class
BTree_node<int>,class std::allocator<class BTree_node<int >'
when trying to instantiate
Tree <inttree;
You seem to be running into the trap

class X {

std::list< X some_member;

};

This is not required to compile and if it does, the behavior is undefined.
The reason is that X is incomplete in std::list<X>. It is regrettable that
the standard requires completeness for type arguments in std::list<>, but
it does in [17.4.3.6/2].

What is the workaround for this?
(a) Don't bother: fix the typo from BTree_node to Tree_node and hope for the
best. Most implementation of std::list<do actually not require the type
argument to be a complete type. (You might run into trouble with g++
installations that were built with the concept-checks option enabled. So
much for portability.)

(b) Write your own std::list<drop in replacement that, for sure, does not
require completeness. That can be done in about 900 LOC. Or use an STL
implementation that makes this guarantee.

(c) Introduce yet another level of indirection

class X {

std::list<X*some_ptr;

};

and deal with the memory management issues that arise.

Best

Kai-Uwe Bux

Jan 21 '07 #2
al*****@pisem.net wrote:
In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;

.......
}

template < class Contents class Tree{
list < Tree_node < Contents ;

.......
}

on what microsoft VC++ compiler complains with error message
error C2079: 'child_list' uses undefined class 'list<class
BTree_node<int>,class std::allocator<class BTree_node<int >'
when trying to instantiate
Tree <inttree;

What is the workaround for this?
Define class BTree_node.
Jan 21 '07 #3

al*****@pisem.net wrote:
In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;

.......
}

template < class Contents class Tree{
list < Tree_node < Contents ;

.......
}

on what microsoft VC++ compiler complains with error message
error C2079: 'child_list' uses undefined class 'list<class
BTree_node<int>,class std::allocator<class BTree_node<int >'
when trying to instantiate
Tree <inttree;

What is the workaround for this?
Deciding whether the name of the class template is Tree_node or
BTree_node would probably help with the compiler problem.

There is some disagreement whether an object may safely have a Standard
container of its own type as one of its data members, or whether the
member declaration of the container is specifying an "incomplete" type.
If so, the program's behavior is, technically at least, undefined.

Greg

Jan 21 '07 #4
i surely did a misprint editing the message - in a compiler there is
BTree_node everywhere

Jan 21 '07 #5

Kai-Uwe Bux wrote:
al*****@pisem.net wrote:
In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;
.......
}

You seem to be running into the trap

class X {

std::list< X some_member;

};
Unlikely, since the code is question is declaring a class template -
not a class - with the std::list<of its own type as a data member.
This is not required to compile and if it does, the behavior is undefined.
The reason is that X is incomplete in std::list<X>. It is regrettable that
the standard requires completeness for type arguments in std::list<>, but
it does in [17.4.3.6/2].
But in this case, "X" would be a specialization of a class template.
Therefore, the std::list<data member of X would be instantiated - if
it is instantiated at all - only after an instance of the template
class X itself had been instantiated - which of course requires that X
be a complete type. In other words, X must be a complete type before
its std::list data member could ever be instantiated.
What is the workaround for this?

(a) Don't bother: fix the typo from BTree_node to Tree_node and hope for the
best. Most implementation of std::list<do actually not require the type
argument to be a complete type. (You might run into trouble with g++
installations that were built with the concept-checks option enabled. So
much for portability.)
I think the type is the only evident problem at this point.

Greg

Jan 21 '07 #6
Greg wrote:
>
Kai-Uwe Bux wrote:
>al*****@pisem.net wrote:
In need to implement a tree structure in which every node has arbitrary
number of children the following code has come into mind:

using std::list;
template < class Contents class Tree_node{

Contents cn;
list < BTree_node < Contents children;
.......
}

You seem to be running into the trap

class X {

std::list< X some_member;

};

Unlikely, since the code is question is declaring a class template -
not a class - with the std::list<of its own type as a data member.
>This is not required to compile and if it does, the behavior is
undefined. The reason is that X is incomplete in std::list<X>. It is
regrettable that the standard requires completeness for type arguments in
std::list<>, but it does in [17.4.3.6/2].

But in this case, "X" would be a specialization of a class template.
Therefore, the std::list<data member of X would be instantiated - if
it is instantiated at all - only after an instance of the template
class X itself had been instantiated - which of course requires that X
be a complete type. In other words, X must be a complete type before
its std::list data member could ever be instantiated.
Templates do not by-pass the completeness problem. Consider

template < typename T >
class X {

std::list< X some_member; // (*)

};

On line (*) the type X is incomplete. You are right to observe that X will
be complete, once X<inthas been instantiated. However [14.6/7] kicks in:

...If a type used in a non-dependent name is incomplete at the point at
which a template is defined but is complete at the point at which an
instantiation is done, and if the completeness of that type affects
whether or not the program is well-formed or affects the semantics of the
program, the program is ill-formed; no diagnostic is required. [Note: if a
template is instantiated, errors will be diagnosed according to the other
rules in this Standard. Exactly when these errors are diagnosed is a
quality of implementation issue. ] ...

Thus, if completeness actually mattered with regard to std::list<>, we would
be doomed nonetheless.

Also, this is to be expected. After all

template < typename T >
class X {

std::pair< X, X data;

};

cannot work just because we turned the recursive type bomb into a template.

What is the workaround for this?

(a) Don't bother: fix the typo from BTree_node to Tree_node and hope for
the best. Most implementation of std::list<do actually not require the
type argument to be a complete type. (You might run into trouble with g++
installations that were built with the concept-checks option enabled. So
much for portability.)

I think the type is the only evident problem at this point.
Do you mean "type" or "typo"?

Best

Kai-Uwe Bux
Jan 21 '07 #7
Kai-Uwe Bux wrote:
Greg wrote:
What is the workaround for this?

(a) Don't bother: fix the typo from BTree_node to Tree_node and hope for
the best. Most implementation of std::list<do actually not require the
type argument to be a complete type. (You might run into trouble with g++
installations that were built with the concept-checks option enabled. So
much for portability.)
The "workaround" I would suggest would actually be - in my view - a
better overall implementation. The idea would be to store the child
tree nodes in the list as smart pointers. Doing so solves the
"incomplete" type problem since a std::tr1::shared_ptr does not require
a complete type - yet a template instantiated with an incomplete type
is itself a complete type.

Moreover, managing the tree nodes without some kind of shared ptr is
apt to lead to dangling pointers, or leaks, or similar problems.
I think the type is the only evident problem at this point.

Do you mean "type" or "typo"?
The word "type" in this case was a typo for "typo" - so the word was an
example of itself even as it was a word for something else. Glad I was
able to clear that up.

Greg

Jan 22 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sebastian Faust | last post by:
Hi, I am thinking now for a while about a design decision. I would be glad if you can give me some advices which is maybe the better way for solving my problem. I wanna do something like...
8
by: JustSomeGuy | last post by:
I need to write an new class derived from the list class. This class stores data in the list to the disk if an object that is added to the list is over 1K in size. What methods of the std stl...
4
by: Mikhail N. Kupchik | last post by:
Hi All. I have a question regarding C++ programming language standard. It is related to standard library, not to the core language. Is it portable to instantiate template class std::list<>...
7
by: Gernot Frisch | last post by:
class A { public: std::list<A> m_a; }; yields errorC2079: '_Value' uses undefined class 'A' using std::vector will work...
44
by: Josh Mcfarlane | last post by:
Just out of curiosity: When would using std::list be more efficient / effective than using other containers such as vector, deque, etc? As far as I'm aware, list doesn't appear to be...
2
by: esuvs | last post by:
Hi, I would like to change the behavior of the std::list so that if I set an iterator to the last element and increment it I would like it to point to the first element, and vice vesa. That is, i...
2
by: ranin02 | last post by:
Hi, We have a list derived from std::list that has a custom allocator derived from std::allocator. This was originally written using VC++ 6.0 which required a workaround for the fact that 6.0...
12
by: isliguezze | last post by:
template <class T> class List { public: List(); List(const List&); List(int, const T&); void push_back(const T &); void push_front(const T &); void pop_back();
17
by: Isliguezze | last post by:
Does anybody know how to make a wrapper for that iterator? Here's my wrapper class for std::list: template <class Tclass List { private: std::list<T*lst; public: List() { lst = new...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.