devxlogo

Vectors Containing Arrays

Question:
I’ve got a struct which is declared as having two fields:

int position;char tile-id[6];

When I use this in a vector, I can use the [] notation to initialise the position int OK and can then check this with a cout command, but when I do the same with the array it compiles OK but I can’t get it to print the contents onscreen.

The initialisation code fragments are:

Row1[0].position=1; cout << Row1[0].position; // this works ok
Row1[0].tile_id="EEEEE";cout << Row1[0].tile_id; this won't work

Answer:
Change the type of tile_id to std::string (remember to #include as well). std::string defines an overloaded version of operator=. Therefore, the second assignmnet will work as expected. Alternatively, if you prefer to retain the type of tile_id as an array of six chars, use the standard C function strcpy() instead of the assignment operator:

#include  strcpy(Row1[0].tile_id, "EEEEE");

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.