Does the following insert work? The reason for my question is that the body has another structure in it that has yet another structure (array) in it. All the variables a, b, c, x, y, and z are secondary and are just there to support my question.
Thanks in advance.
struct S_A
{
int a;
float b;
char c;
// ...
S_B my_double_nested_structure;
};
struct S_B
{
int x;
float y;
char z;
// .. .
char array1[2];
};
typedef std::map<int, S_A> myAMapType;
S_A nestedStruct;
nestedStruct.a = 5;
nestedStruct.b = 5.9;
nestedStruct.c = 'A';
nestedStruct.my_double_nested_structure.x = 4;
nestedStruct.my_double_nested_structure.y = 8.9;
nestedStruct.my_double_nested_structure.z = 'B';
nestedStruct.my_double_nested_structure.array1[0] = 'B';
nestedStruct.my_double_nested_structure.array1[1] = 'C';
main()
{
myAMapType finalMap;
finalMap.insert(std::pair<int, S_A>(3, nestedStruct);
}
{}button. – Mike Seymour Apr 22 '11 at 19:32