Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > initialize an array of elements that contain another array

Reply
Thread Tools

initialize an array of elements that contain another array

 
 
wenmang@yahoo.com
Guest
Posts: n/a
 
      07-31-2006
hi,
I have following:
struct array1
{
int id;
char *name;
};

struct array2
{
int id;
char * name;
array1 *myArray;
};

Now, I try to create an array of array2 by initialization:
array2 collection[] =
{
10, "first",
{1, "first.first"},
20, "second",
{2, "second.second"}
};

compiler generates following similar error:
error: a value of type "1" cannot be used to initialize an entity of
type "array1 *"

How am I going to initialize something like above. Thx

 
Reply With Quote
 
 
 
 
Lew Pitcher
Guest
Posts: n/a
 
      07-31-2006
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


wenm...@yahoo.com wrote:
> hi,
> I have following:
> struct array1
> {
> int id;
> char *name;
> };
>
> struct array2
> {
> int id;
> char * name;
> array1 *myArray;
> };
>
> Now, I try to create an array of array2 by initialization:
> array2 collection[] =
> {
> 10, "first",
> {1, "first.first"},
> 20, "second",
> {2, "second.second"}
> };
>
> compiler generates following similar error:
> error: a value of type "1" cannot be used to initialize an entity of
> type "array1 *"
>
> How am I going to initialize something like above. Thx


You are going to explicitly malloc() space for your array1 entries, and
populate the myArray pointers in array2 with the malloc()ed values.

You are going to do this in program logic.

You are *not* going to do this with an initializer.

HTH
- --
Lew Pitcher


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (MingW32) - WinPT 0.11.12

iD8DBQFEzltYagVFX4UWr64RAh+EAJ0XihKh3M+dhmO3sAad8t smGutOFACgq/UR
bDbPZO+MoKcIVOGHvLxgTKA=
=bwDm
-----END PGP SIGNATURE-----

 
Reply With Quote
 
 
 
 
Frederick Gotham
Guest
Posts: n/a
 
      07-31-2006

> array1 *myArray;



Change to:

array1 myArray;

--

Frederick Gotham
 
Reply With Quote
 
wenmang@yahoo.com
Guest
Posts: n/a
 
      07-31-2006

Lew Pitcher wrote:

> You are going to explicitly malloc() space for your array1 entries, and
> populate the myArray pointers in array2 with the malloc()ed values.
>
> You are going to do this in program logic.
>
> You are *not* going to do this with an initializer.
>
> HTH
> - --
> Lew Pitcher
>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.3 (MingW32) - WinPT 0.11.12
>
> iD8DBQFEzltYagVFX4UWr64RAh+EAJ0XihKh3M+dhmO3sAad8t smGutOFACgq/UR
> bDbPZO+MoKcIVOGHvLxgTKA=
> =bwDm
> -----END PGP SIGNATURE-----



actually, I want an array1 inside array2 without specifying the size of
array1. The size of array1 is determined through initialization list,
can I do that?
struct array2
{
int id;
char *name;
array1 myArray[]; - will not compile here
};

 
Reply With Quote
 
wenmang@yahoo.com
Guest
Posts: n/a
 
      07-31-2006
struct type1
{
int id;
char *name;
};


struct type2
{
int id;
char * name;
type1 *myType1Collection; //should be arrary of type1 here: type1
myType1Collcetion[]?

};

The actual array size for type1 is a variable and can only determined
through initialization list after reading from external input through a
code generation routine. How can I achieve that?

 
Reply With Quote
 
wenmang@yahoo.com
Guest
Posts: n/a
 
      07-31-2006
struct type1
{
int id;
char *name;
};


struct type2
{
int id;
char * name;
type1 *myType1Collection; //should be arrary of type1 here: type1
myType1Collcetion[]?

};

The actual array size for type1 is a variable and can only determined
through initialization list after reading from external input through a
code generation routine. How can I achieve that?

 
Reply With Quote
 
Szabolcs Borsanyi
Guest
Posts: n/a
 
      07-31-2006
> wrote:
> hi,
> I have following:
> struct array1
> {
> int id;
> char *name;
> };


This is ok.

> struct array2
> {
> int id;
> char * name;
> array1 *myArray;
> };


The last member makes me worry. It is not an array but a pointer. Moreover,
you did not define the array1 type. If you are using a C++ compiler, this
is not a problem, but, well, in C, you'd better write
struct array1 *myArray;
But as already told, this is not an array. An array looks like
struct array1 myArray[5];

but then you fix the number of elements. You could also write
struct array1 myArray[];
but then you would like to define an array out ouf struct array2 which.
Should not all the members of this array be of the same type?
(Different sizes of myArrays make them incompatible.)

Szabolcs Borsanyi
 
Reply With Quote
 
Keith Thompson
Guest
Posts: n/a
 
      07-31-2006
writes:
> I have following:
> struct array1
> {
> int id;
> char *name;
> };
>
> struct array2
> {
> int id;
> char * name;
> array1 *myArray;
> };
>
> Now, I try to create an array of array2 by initialization:
> array2 collection[] =
> {
> 10, "first",
> {1, "first.first"},
> 20, "second",
> {2, "second.second"}
> };
>


The first thing you should do is stop compiling your code with a C++
compiler; either that, or ask in comp.lang.c++.

You haven't declared a type "array1", so the declaration of the third
element of your "struct array2" is illegal. You've declared a type
called "struct array1".

The following would be legal:

struct array1
{
int id;
char *name;
};

struct array2
{
int id;
char *name;
struct array1 *myArray;
};

struct array2 collection[] = ...

[...]

> How am I going to initialize something like above. Thx


C allows you to omit some braces in an initializer, but it's not
generally a good idea to take advantage of this. Enclosing the
initializers for each object and subobject in braces can make the code
easier to understand; it can also make it easier for the compiler to
catch some errors.

Assuming you want two elements in your array, you can declare it like
this:

struct array2 collection[] =
{ { 10, "first", ? },
{ 20, "second", ? } };

The question marks, of course, aren't legal; they need to be replaced
by something that initializes the myArray member of the struct array2
object.

What you want to do is initialize the myArray member (a pointer to
struct array1) so it points to an object of type struct array1. To do
this, you would need to allocate an object of type struct array1. You
can't really do this in an initializer.

Here's one possible approach:

struct array1
{
int id;
char *name;
};

struct array2
{
int id;
char *name;
struct array1 *myArray;
};

struct array1 a1_0 = { 1, "first.first" };
struct array1 a1_1 = { 2, "second.second" };

struct array2 collection[] =
{ { 10, "first", &a1_0 },
{ 20, "second", &a1_1 } };

Incidentally, "array1" and "array2" aren't very good names for
structures. I hope you're using something clearer in your real code.

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
 
Reply With Quote
 
Barry Schwarz
Guest
Posts: n/a
 
      08-01-2006
On 31 Jul 2006 12:28:16 -0700, wrote:

>hi,
>I have following:
>struct array1
>{
> int id;
> char *name;
>};
>
>struct array2
>{
> int id;
> char * name;
> array1 *myArray;
>};


array2 has three members.
>
>Now, I try to create an array of array2 by initialization:
>array2 collection[] =
>{
> 10, "first",


By omitting the braces on this line, you are telling the compiler that
this is not the complete list of initialization values for the first
element of the array. Since there are two values in this list, they
are assigned to id and name. The next value will be assigned to
myArray (which has type pointer to struct).


> {1, "first.first"},


This is not a suitable value for myArray. If myArray were a struct
instead of a pointer to struct, it would probably work.

> 20, "second",
> {2, "second.second"}
>};
>
>compiler generates following similar error:
> error: a value of type "1" cannot be used to initialize an entity of
>type "array1 *"
>
>How am I going to initialize something like above. Thx


If you really want myArray to be a pointer, then you will need to
define a number of objects of type struct array1 (probably initialized
with the braced values above) and replace the braced initialization
values above with the address of the appropriate object (e.g.,
&array1_1).


Remove del for email
 
Reply With Quote
 
Simon Biber
Guest
Posts: n/a
 
      08-02-2006
wrote:
> hi,
> I have following:
> struct array1
> {
> int id;
> char *name;
> };
>
> struct array2
> {
> int id;
> char * name;
> array1 *myArray;
> };

....
> How am I going to initialize something like above. Thx


Hi Wenmang. (IIRC that means 'illiterate' in Chinese?)

Nobody here mentioned that you can use a feature from C99 to create an
automatic struct and take its address as part of the initialiser.

#include <stdio.h>

struct foo
{
int id;
char *name;
};

struct bar
{
int id;
char *name;
struct foo *pfoo;
};

int main(void)
{
struct bar myBar = {
10,
"hello",
& (struct foo) {20, "world"},
};
printf("{%d, %s, {%d, %s}}\n",
myBar.id, myBar.name,
myBar.pfoo->id, myBar.pfoo->name);
return 0;
}

Note that the unnamed struct object that was created has function scope.
If you do the initialisation inside a function and then return from the
function, the pointer will become invalid.

--
Simon.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem in running a basic code in python 3.3.0 that includes HTML file Satabdi Mukherjee Python 1 04-04-2013 07:48 PM
RCR: String#contain? and Array#contain? Roger Pack Ruby 3 09-28-2010 04:13 PM
Does string contain A, and if so, does a section of string contain B Jason Carlton Javascript 11 12-08-2009 06:07 PM
if instance variable get initialize after assigning some values or after constructor then when does static variable get initialize Tony Morris Java 3 02-04-2006 08:39 AM
initialize array elements during declaration hyena Java 10 01-24-2005 10:21 PM



Advertisments