Continuing from the linked question Dynamic template arrays, there two more things that I would like to be explained:
I receive a warning by the compiler that the copy commands are unsafe: “Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct” How serious is this problem and what can be done to get over it?
Most important: I cannot get correctly the length of the array with the common manner. The final size of array is calculated to 1, although it contains 3 elements. Is there a flaw in the code or something works differently due to dynamic arrays?
Here is my code:
template<typename T>
void VectorHolder<T>::setArrays(T firstarray[],T secondarray[] ,int N1, int N2)
{
array1 = new T[N1];
array2 = new T[N2];
std::copy(firstarray, firstarray + N1, array1);
std::copy(secondarray, secondarray + N2, array2);
int arraysize = sizeof(array1)/sizeof(T);
cout<<"\narraysize: "<<arraysize<<endl;
cout<<"\nFirst array contains: \n";
for(int i=0; i<arraysize;i++)
cout<<array1[i]<<endl;
}
I get at the output only one element, but the array contains three. If I change the for loop as
for(int i=0; i<N1;i++)
I get the correct result. Why?

std::vector<T>instead ofT[], but you didn't listen to me. So explain, is there any problem in usingstd::vector? Because I don't see you would get better solution than that. – Nawaz Dec 3 '11 at 14:00new(unless in controlled conditions), anddeletenever.. – Kerrek SB Dec 3 '11 at 14:10