473,396 Members | 2,002 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,396 software developers and data experts.

std::list of C-style arrays

Hello,

Could someone explain why the following code is illegal?
(I'm trying to use a list of (C-style) arrays.)

#include <list>
typedef std::list < int[2] foo_t;
int main()
{
int v[2] = { 12, 34 };
foo_t bar;
bar.push_front(v);
return 0;
}

$ g++ -std=c++98 -Wall foo.cxx
stl_construct.h: In function `void std::_Construct(_T1*, const _T2&)
[with _T1 = int[2], _T2 = int[2]]':
stl_list.h:438: instantiated from `std::_List_node<_Tp>*
std::list<_Tp, _Alloc>::_M_create_node(const _Tp&) [with _Tp = int[2],
_Alloc = std::allocator<int[2]>]'
stl_list.h:1163: instantiated from `void std::list<_Tp,
_Alloc>::_M_insert(std::_List_iterator<_Tp>, const _Tp&) [with _Tp =
int[2], _Alloc = std::allocator<int[2]>]'
stl_list.h:755: instantiated from `void std::list<_Tp,
_Alloc>::push_front(const _Tp&) [with _Tp = int[2], _Alloc =
std::allocator<int[2]>]'
foo.cxx:7: instantiated from here
stl_construct.h:81: error: ISO C++ forbids initialization in array new
Do I have to wrap the array in a struct?

#include <list>
struct sfoo { int v[2]; };
typedef std::list < sfoo foo_t;
int main()
{
sfoo s = { 12, 34 };
foo_t bar;
bar.push_front(s);
return 0;
}

Regards.
Dec 7 '07 #1
8 3401
On 2007-12-07 10:50:11 -0500, Spoon <root@localhostsaid:
>
Could someone explain why the following code is illegal?
(I'm trying to use a list of (C-style) arrays.)
Because arrays are neither copy constructible nor assignable.
>

Do I have to wrap the array in a struct?
Yes. Or, if you have TR1, use std::tr1::array, a template that defines
a fixed-size array that's copy constructible and assignable. It's also
slated for C++0x.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Dec 7 '07 #2
Spoon wrote:
Hello,

Could someone explain why the following code is illegal?
(I'm trying to use a list of (C-style) arrays.)

#include <list>
typedef std::list < int[2] foo_t;
int main()
{
int v[2] = { 12, 34 };
foo_t bar;
bar.push_front(v);
return 0;
}
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
$ g++ -std=c++98 -Wall foo.cxx
stl_construct.h: In function `void std::_Construct(_T1*, const _T2&)
[with _T1 = int[2], _T2 = int[2]]':
stl_list.h:438: instantiated from `std::_List_node<_Tp>*
std::list<_Tp, _Alloc>::_M_create_node(const _Tp&) [with _Tp = int[2],
_Alloc = std::allocator<int[2]>]'
stl_list.h:1163: instantiated from `void std::list<_Tp,
_Alloc>::_M_insert(std::_List_iterator<_Tp>, const _Tp&) [with _Tp =
int[2], _Alloc = std::allocator<int[2]>]'
stl_list.h:755: instantiated from `void std::list<_Tp,
_Alloc>::push_front(const _Tp&) [with _Tp = int[2], _Alloc =
std::allocator<int[2]>]'
foo.cxx:7: instantiated from here
stl_construct.h:81: error: ISO C++ forbids initialization in array new
Do I have to wrap the array in a struct?

#include <list>
struct sfoo { int v[2]; };
typedef std::list < sfoo foo_t;
int main()
{
sfoo s = { 12, 34 };
foo_t bar;
bar.push_front(s);
return 0;
}
You could use std::tr1::array if your implementation provides it.
Alternatively, there is boost::array.
Best

Kai-Uwe Bux

Dec 7 '07 #3
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?
Dec 8 '07 #4
On 2007-12-07 21:59:30 -0500, Juha Nieminen <no****@thanks.invalidsaid:
Kai-Uwe Bux wrote:
>Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.

Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?
The simplest answer is that that's the way it is in C. A more complex
answer is that you end up in a tangle, because the name of an array
decays to a pointer to its first element in many contexts, and when
you're down to a pointer you no longer know the size. Yes, C++ could
have added a bunch of rules about when you can and when you can't copy
them, but that would not be productive. If you need copyable arrays,
use std::tr1::array. For more details, see chapter 4 of my book, "The
Standard C++ Library Extensions."

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Dec 8 '07 #5
On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.

Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?
On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.

Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?
I can try to justify but I am not sure if that was the real intent. It
could be, though.

This is probably an inherited concept from C. C arrays as well decay
to pointers. Consider this (or just about any string function in
<string.h>):

int strcmp ( const char * str1, const char * str2 );

It is a standard C(-style) string comparison function. Now, consider
that arrays did not decay to pointers and that they were copyable. In
the absence of overloading (and templates) which are C++ concepts, how
would you implement a strcpy function that could work with any length
C-string arrays? It don't think it would have been possible without
having functions like strcmp_1/strcmp_2/... and so on functions. Which
would be a real pain since you just can't write this function for all
possible array lengths.

Now, in C++, this is avoided with optimizations in case of templates.
Example: boost::lexical_cast doesn't rely on such optimizations
though. It is forced that C-style string arrays decay to pointers
during instantiation of lexical_stream otherwise, this might cause
code-bloat. Consider the instantiations for as many C-string arrays as
different sized ones used in a program! In optimized modes, compilers
might do away with that many instantiations and have only one.

So, that (value semantics for arrays) is something that everyone wants
to avoid. Why have it?
Dec 8 '07 #6
On Dec 8, 5:33 pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?

On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?

I can try to justify but I am not sure if that was the real intent. It
could be, though.

This is probably an inherited concept from C. C arrays as well decay
to pointers. Consider this (or just about any string function in
<string.h>):

int strcmp ( const char * str1, const char * str2 );

It is a standard C(-style) string comparison function. Now, consider
that arrays did not decay to pointers and that they were copyable. In
the absence of overloading (and templates) which are C++ concepts, how
would you implement a strcpy function that could work with any length
C-string arrays? It don't think it would have been possible without
having functions like strcmp_1/strcmp_2/... and so on functions. Which
would be a real pain since you just can't write this function for all
possible array lengths.

Now, in C++, this is avoided with optimizations in case of templates.
Example: boost::lexical_cast doesn't rely on such optimizations
though. It is forced that C-style string arrays decay to pointers
during instantiation of lexical_stream otherwise, this might cause
code-bloat. Consider the instantiations for as many C-string arrays as
different sized ones used in a program! In optimized modes, compilers
might do away with that many instantiations and have only one.

So, that (value semantics for arrays) is something that everyone wants
to avoid. Why have it?
arrays are some part of paranoia that C++ iherits from C . C++ is the
result of rapid and uncuatious patching C with a linear algebraic
approach.

regards,
Fm.
Dec 8 '07 #7
On Dec 8, 3:33 pm, Abhishek Padmanabh
<abhishek.padman...@gmail.comwrote:

[...]
It is a standard C(-style) string comparison function. Now,
consider that arrays did not decay to pointers and that they
were copyable. In the absence of overloading (and templates)
which are C++ concepts, how would you implement a strcpy
function that could work with any length C-string arrays?
The same way most other languages implement it? With the size
being an attribute of the array, and not part of its type? With
provisions for an open typed array, as well as a fixed length
array?

There are any number of solutions. Almost all superior to the
one chosen by C.
It don't think it would have been possible without having
functions like strcmp_1/strcmp_2/... and so on functions.
Ada has them. Java has them. In both languages, arrays are
real types, possibly passed by value, and obeying all of the
rules other types do.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Dec 9 '07 #8
On Dec 8, 5:33 pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?

On Dec 8, 7:59 am, Juha Nieminen <nos...@thanks.invalidwrote:
Kai-Uwe Bux wrote:
Built-in arrays do not satisfy the Assignable and CopyConstructible concepts
required for types used in standard sequence containers.
Is there any technical or rational reason for this? After all, they
*are* copied and assigned if they are members of a struct/class. Why
can't it be so also when they are bare?

I can try to justify but I am not sure if that was the real intent. It
could be, though.

This is probably an inherited concept from C. C arrays as well decay
to pointers. Consider this (or just about any string function in
<string.h>):

int strcmp ( const char * str1, const char * str2 );

It is a standard C(-style) string comparison function. Now, consider
that arrays did not decay to pointers and that they were copyable. In
the absence of overloading (and templates) which are C++ concepts, how
would you implement a strcpy function that could work with any length
C-string arrays? It don't think it would have been possible without
having functions like strcmp_1/strcmp_2/... and so on functions. Which
would be a real pain since you just can't write this function for all
possible array lengths.
decay is for last decades just forget about it but being intrinsically
convertible to pointer is not conflicting with copy-constructability
and assignability .numeric types are intrinsically convertible to each
other and that does not prevent copy or assign on either one.At the
time C was designed no neither OO was known nor GP and assignabilty/
convertibilty/... did not make sense so decay strategy was used .Why
should we be bound to restrictions that could be removed in a backward
compatible manor? I mean we can safely replace the idea of decay with
convertabiliy. All we need is a minor review.

regards,
FM.
Dec 10 '07 #9

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

Similar topics

3
by: Mike Pemberton | last post by:
I'm sure there's a good explanation for this effect, but I get rather a strange output from this little test: #include <iostream> #include <list> int main() { std::list<int> int_list;
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...
5
by: Eric Lilja | last post by:
Hello, consider this complete program (sorry, it's not minimal but I hope it's readable at least): #include <algorithm> #include <iostream> #include <vector> class Row { public:
6
by: PengYu.UT | last post by:
Hi, Suppose I have a list which contains pointers. I want the pointer got by dereferencing the iterator be a pointer pointing to a const object. But std::list<const T*>::const_iterator doens't...
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...
7
by: alex221 | last post by:
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{ ...
0
by: Javier | last post by:
Hi all, I have this code: class A { std::list<Bm_observadores; void function() {
3
by: Ray D. | last post by:
Hey all, I'm trying to pass a list into a function to edit it but when I compile using g++ I continue to get the following error: maintainNeighbors.cpp:104: error: invalid initialization of...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.