given the following code:
const myStr codesArr[] = {"AA","BB", "CC"};
myStr is a class the wraps char*.
I need to loop over all the items in the array but i don't know the number of items.
I don't want to define a const value that will represent the size (in this case 3)
Is it safe to use something like:
const int size = sizeof(codesArr) / sizeof(myStr);
what to do?


std::array(orstd::tr1::arrayif your compiler isn't c++11) instead of builtin arrays. And likely usingstd::stringinstead of whatevermyStrdoes – Grizzly Nov 14 '12 at 9:03sizeof(codesArr) / sizeof(codesArr[0]);, with the restriction mentioned by Luchian Grigore. – Joachim Pileborg Nov 14 '12 at 9:03