473,796 Members | 2,704 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

struct in struct

Hello.
My compiler (GCC 3.3.*) does not complain about the following:

#include <iostream>
#include <vector>
using namespace std;

struct X{
int a,b,c;
vector<X> pp;
};

int main(){
X a;
}
So there is not a problem with this self-refering struct, why?
Must not vector know the size of what it should contain?
Jul 22 '05
14 2570
On Tue, 01 Jun 2004 03:50:03 GMT, Gunnar G <de****@comhem. se> wrote:
Which, I believe,
is what Gunnar G was reporting for an *empty* container.
> cat self.cc #include <iostream>

template <typename T>
struct myVector {
T a[1];
};

struct X{
int a,b,c;
myVector<X> pp;
};

int main(int argc, char* argv[]){
X a;
return 0;
}
> g++ -Wall -ansi -pedantic -o self self.cc

self.cc: In instantiation of `myVector<X>':
self.cc:10: instantiated from here
self.cc:5: error: `myVector<T>::a ' has incomplete type
self.cc:8: error: forward declaration of `struct X'
self.cc: In function `int main(int, char**)':
self.cc:14: warning: unused variable `X a'

is probably the case that Gunnar G was concerned about.


So, you get an error here since you are declaring the array T a[1], and that
implies that something (the compiler?) would have to know the size of the
"T" in order to allocate memory?


Right. "myVector" contains a data declaration
T a[1];
(which doesn't need to be an array; a simple
T a;
would have similar results for the purpose of this example) that requires
a complete definition for the type T, which, at the point of pp's
declaration, is not available.
But with a STL-vector , it uses (perhaps
pointers) so it would not have to know the size, or the size is easy to
find, since it's just an sizeof(int)+siz eof(X-pointer)+overhe ad ?


Right, std::vector would not have to know the size of its value_type at the
point of pp's declaration in your original example.
-leor
--
Leor Zolman --- BD Software --- www.bdsoft.com
On-Site Training in C/C++, Java, Perl and Unix
C++ users: download BD Software's free STL Error Message Decryptor at:
www.bdsoft.com/tools/stlfilt.html
Jul 22 '05 #11
Gunnar G wrote:
Which, I believe,
is what Gunnar G was reporting for an *empty* container.
> cat self.cc

#include <iostream>

template <typename T>
struct myVector {
T a[1];
};

struct X{
int a,b,c;
myVector<X> pp;
};

int main(int argc, char* argv[]){
X a;
return 0;
}
> g++ -Wall -ansi -pedantic -o self self.cc

self.cc: In instantiation of `myVector<X>':
self.cc:10: instantiated from here
self.cc:5: error: `myVector<T>::a ' has incomplete type
self.cc:8: error: forward declaration of `struct X'
self.cc: In function `int main(int, char**)':
self.cc:14: warning: unused variable `X a'

is probably the case that Gunnar G was concerned about.


So, you get an error here since you are declaring the array T a[1], and that
implies that something (the compiler?) would have to know the size of the
"T" in order to allocate memory? But with a STL-vector , it uses (perhaps
pointers) so it would not have to know the size, or the size is easy to
find, since it's just an sizeof(int)+siz eof(X-pointer)+overhe ad ?


I think there is a way to break your original example by requiring the
template parameter to be a complete type for the purpose of vector's member
specification. Imagine an implementation like this:

template <typename T, class Allocator = allocator <T> >
class vector {
enum {
element_size = sizeof(T)
};

//...
};

I haven't decided why anyone would want to do that, but wouldn't it
still be a conforming implementation?

Denis
Jul 22 '05 #12
"E. Robert Tisdale" <E.************ **@jpl.nasa.gov > schreef in bericht
news:c9******** **@nntp1.jpl.na sa.gov...
Leor Zolman wrote:
Gunnar G wrote:
My compiler (GCC 3.3.*) does not complain about the following:

#include <iostream>
#include <vector>
using namespace std;

struct X{
int a,b,c;
vector<X> pp;
};

int main(){
X a;
return 0;
}

So there is not a problem with this self-refering struct, why?
Must not vector know the size of what it should contain?
Ah, but not /yet/. At the point where pp is declared,
there's nothing yet happening where the vector "needs to know" the size of X. Go take a look at std::vector's class definition
in whatever lib (gcc, I guess) you're using,
and you'll see that it probably makes use of a pointer to X,
but you won't see any X objects themselves declared in the class definition.
Are you saying that this behavior is implementation dependent?


No, the size of std::vector<T> is a constant. It does not change during
run-time execution, because all classes have a constant size. The elemens an
std::vector contains are located on the heap.
By the time it needs to specialize member functions such as push_back
[say, for example, if you were to add this line to main:
a.pp.push_back( X());
] then X is a complete type and it works.

Jul 22 '05 #13
"Gunnar G" <de****@comhem. se> wrote in message
news:DZ******** ************@ne wsc.telia.net
Hello.
My compiler (GCC 3.3.*) does not complain about the following:

#include <iostream>
#include <vector>
using namespace std;

struct X{
int a,b,c;
vector<X> pp;
};

int main(){
X a;
}
So there is not a problem with this self-refering struct, why?
Must not vector know the size of what it should contain?


This was discussed some time ago both on this newsgroup and
comp.lang.c++.m oderated. There are two statements in the standard that are
relevant. The first is in 14.3.1 p2 of the 2003 standard. It says:

"[Note: a template type argument may be an incomplete type (3.9). ]"

The second is in section 17.4.3.6 of the standard. It says:

"In certain cases (replacement functions, handler functions, operations on
types used to instantiate standard library template components), the C + +
Standard Library depends on components supplied by a C + + program. If these
components do not meet their requirements, the Standard places no
requirements on the implementation.

"In particular, the effects are undefined in the following cases:
[snip]
- if an incomplete type (3.9) is used as a template argument when
instantiating a template component."

The second quotation prompts the question of exactly when "instantiat ion"
takes place. The newsgroup discussion suggested that the use of the
vector<X> pp; in your struct declaration DOES constitute instantiation for
the purposes of the quoted passage.

The general conclusion from the discussion (as interpreted by me) was:

1. In general, there is no language bar against template arguments that are
incomplete types in the contexts that you are discussing,
2. Whether or not incomplete types are allowed in this context depends on
the details of the template class concerned. The passage from 17.4.3.6 says
that the standard library is not required to accept incomplete types as
arguments. This was originally because it was not known if the standard
library could be implemented in such a way as to allow incomplete types (in
fact, there were some claims that vectors could not be implemented in such a
way).

The Dinkumware library (which ships with VC++ 7.1, among others) does allow
containers with incomplete types in the context you have described. gcc
apparently does too. Now that its technical feasibility has been shown, it
is likely to make it into the standard. For the present, however, the
property is implementation-dependent.

Two of the original discussions are here (I seem to remember a third thread
but can't find it):

http://groups.google.com/groups?hl=e....nz%26rnum%3D4

and here

http://groups.google.com/groups?hl=e...com%26rnum%3D1
--
John Carson
1. To reply to email address, remove donald
2. Don't reply to email address (post here instead)

Jul 22 '05 #14
E. Robert Tisdale wrote:
> cat self.cc

#include <iostream>
#include <vector>

struct X{
int a,b,c;
std::vector<X> pp(1);
};

int main(int argc, char* argv[]){
X a;
return 0;
}
> g++ -Wall -ansi -pedantic -o self self.cc

self.cc:6: error: invalid data member initialization
self.cc:6: error: (use `=' to initialize static data members)


gcc seems pretty clear on the matter: you can't initialize data members
like that.

try:
struct X{
int a,b,c;
std::vector<int > pp(1);
};

Same error, I'll bet.

-josh

Jul 22 '05 #15

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

Similar topics

5
17656
by: Roy Hills | last post by:
When I'm reading from or writing to a network socket, I want to use a struct to represent the structured data, but must use an unsigned char buffer for the call to sendto() or recvfrom(). I have two questions: 1. Is it generally safe to "overlay" the structure on the buffer, e.g.: unsigned char buffer;
10
3523
by: Rick Anderson | last post by:
All, I am receiving the following compilation error on LINUX (but not Solaris, HPUX, WIN32, etc): compiling osr.c LBFO.h(369): warning #64: declaration does not declare anything extern struct foobar; ^
5
3307
by: PCHOME | last post by:
Hello! I am working on dividing a single C file into several files. Now I encounter a problem about the global variables and can not find a way to solve it. All global variables and codes used to be in that single file, that worked OK. But when I divdie that file into several ones, I have many "invalid use of undefined type" errors. The four files are main.c, main.h, readLP.h, and readLP.c. In readLP.h
19
2645
by: Russell Shaw | last post by:
Hi, I have two structs in a header file, and they reference each other, causing a compile error. Is there a standard way to deal with this? typedef struct { ... RtAction *actions; } RtWidget;
16
3846
by: burn | last post by:
Hello, i am writing a program under linux in c and compile my code with make and gcc. Now i have 4 files: init.c/h and packets.c/h. Each header-file contains some: init.h: struct xyz {
5
4356
by: Johs32 | last post by:
I have a struct "my_struct" and a function that as argument takes a pointer to this struct: struct my_struct{ struct my_struct *new; }; void my_func(struct my_struct *new); I have read that there is no difference between giving this function a
7
2262
by: Alex | last post by:
If I have two struct. See below: struct s1 { int type; int (*destroy)(struct s1* p); } struct s2 { struct s1 base;
4
5069
by: hobbes992 | last post by:
Howdy folks, I've been working on a c project, compiling using gcc, and I've reached a problem. The assignment requires creation of a two-level directory file system. No files have to be added or deleted, however it must be initialized by a function during run-time to contain so many users which each contain so many directories of which each contain so many files. I've completed the program and have it running flawlessly without implementing...
4
9817
by: hugo.arregui | last post by:
Hi! I have two struts like that: struct { int num; int num2; struct b arrayOfB; } a;
4
2790
by: Sheldon | last post by:
Hi, I have a unique case where I need an array of structs that grows and within this array is another struct that grows in some cases. I'm having trouble allocating memory. Since I have never done this before, I'm sure it's a rookie mistake but I cannot seem to find it. Can someone render some assistance please? struct Fpos { grib_handle *h;
0
9535
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10201
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7558
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6802
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5454
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4130
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.