Pointers to vectors?
-
Hi guys Before my question I remind you I'm an amateur... so be kind in your response :) Why is it that the following code works fine if I use a regular array and not a vector container... :mad: How do I make the function return a pointer to the beginning of the vector and use it on the call from another function...??? :confused: Thanks a lot for all your help, you guys are great! :cool: double *TakeThisVector::CreateVector(double such) { vector A_vector; double *pt_tovector = 0; int max=2; for(int i=0; i<= max; i++) { A_vector.push_back(such); such++; } pt_tovector = A_vector; return pt_tovector; } void GimmeTheVector::ShowVector() { TakeThisVector TTV; double A0, A1; double *Recover = 0; Recover = TTV.CreateVector(Lat, Lon); A0 = *Recover++; A1 = *Recover; }
-
Hi guys Before my question I remind you I'm an amateur... so be kind in your response :) Why is it that the following code works fine if I use a regular array and not a vector container... :mad: How do I make the function return a pointer to the beginning of the vector and use it on the call from another function...??? :confused: Thanks a lot for all your help, you guys are great! :cool: double *TakeThisVector::CreateVector(double such) { vector A_vector; double *pt_tovector = 0; int max=2; for(int i=0; i<= max; i++) { A_vector.push_back(such); such++; } pt_tovector = A_vector; return pt_tovector; } void GimmeTheVector::ShowVector() { TakeThisVector TTV; double A0, A1; double *Recover = 0; Recover = TTV.CreateVector(Lat, Lon); A0 = *Recover++; A1 = *Recover; }
You would return &A_vector[0]...except that A_vector doesn't exist after CreateVector exits. You probably want to return the vector rather than a pointer to its first element. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p'
-
You would return &A_vector[0]...except that A_vector doesn't exist after CreateVector exits. You probably want to return the vector rather than a pointer to its first element. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p'
uh... pt_tovector IS &A_vector[0]... and the code works if instead of using a vector container I use an array. The error message is: error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class std::vector >' (or there is no acceptable conversion) which means that I can't assign &A_vector[0] to pt_tovector if A_vector is a container... ...or I'm more confused than I thought X| Thanks!!!
-
uh... pt_tovector IS &A_vector[0]... and the code works if instead of using a vector container I use an array. The error message is: error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class std::vector >' (or there is no acceptable conversion) which means that I can't assign &A_vector[0] to pt_tovector if A_vector is a container... ...or I'm more confused than I thought X| Thanks!!!
-
knapak wrote: uh... pt_tovector IS &A_vector[0] No, the code you posted has
pt_tovector = A_vector;
. For ordinary arrays that would be same aspt_tovector = &A_vector[0];
but not for vectors.:omg: OHHHHHHHH .... So.... how do I solve the problem? The first comments suggest to return the vector itself instead of a pointer to its first element... EXCUSE MY NAIVETE, but I always thought that returning a pointer to the first element of an array was THE way to return an array... Of course now we are talking about Vectors... :sigh: Thank you!
-
:omg: OHHHHHHHH .... So.... how do I solve the problem? The first comments suggest to return the vector itself instead of a pointer to its first element... EXCUSE MY NAIVETE, but I always thought that returning a pointer to the first element of an array was THE way to return an array... Of course now we are talking about Vectors... :sigh: Thank you!
OK... so I figured that if I make an iterator be
A_vector.begin()
and then pass the iterator to a pointer... should do the trick... right? WRONG! :mad: That works within the scope of the function that contains the vector, but apparently the container dissapears as the program exits the function call (just as the first folk said). That obviously is different to what happens when using regular arrays... and still have not found the way to do what I need... :~ Many thanks to all of you. -
OK... so I figured that if I make an iterator be
A_vector.begin()
and then pass the iterator to a pointer... should do the trick... right? WRONG! :mad: That works within the scope of the function that contains the vector, but apparently the container dissapears as the program exits the function call (just as the first folk said). That obviously is different to what happens when using regular arrays... and still have not found the way to do what I need... :~ Many thanks to all of you.As I said in my first reply, return the vector object - otherwise the storage associated with the vector is deallocated when the function exits. If you did a similar thing with arrays, like below, you'd have the same problem.
double *CreateArray(double such) { double pt_tovector[2]; pt_tovector[0] = such; pt_tovector[1] = such; return pt_tovector; }
Of course, if you allocated the array on the heap like the example below, you *CAN* return the array pointer. The thing is, the vector encapsulates and manages a pointer to heap storage - if you think of the vector as a pointer to an array in heap storage with other useful properties (like knowing how big the array is - a pointer won't tell you that), that may help.
double *CreateArray(double such) { double* pt_tovector = new double[2]; pt_tovector[0] = such; pt_tovector[1] = such; return pt_tovector; }
BTW - iterators in VC7.1 are not pointers. They were in VC6, but there is no guarantee that iterators are pointers. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p'
-
:omg: OHHHHHHHH .... So.... how do I solve the problem? The first comments suggest to return the vector itself instead of a pointer to its first element... EXCUSE MY NAIVETE, but I always thought that returning a pointer to the first element of an array was THE way to return an array... Of course now we are talking about Vectors... :sigh: Thank you!
Yes, you should return a pointer to the first element of the vector, but your code doesn't do that! You must actually write
pt_tovector = &A_vector[0]
in your program to return a pointer to the first element of the STL vectorA_vector
. Additionally, the vector can't be local to the function. -
As I said in my first reply, return the vector object - otherwise the storage associated with the vector is deallocated when the function exits. If you did a similar thing with arrays, like below, you'd have the same problem.
double *CreateArray(double such) { double pt_tovector[2]; pt_tovector[0] = such; pt_tovector[1] = such; return pt_tovector; }
Of course, if you allocated the array on the heap like the example below, you *CAN* return the array pointer. The thing is, the vector encapsulates and manages a pointer to heap storage - if you think of the vector as a pointer to an array in heap storage with other useful properties (like knowing how big the array is - a pointer won't tell you that), that may help.
double *CreateArray(double such) { double* pt_tovector = new double[2]; pt_tovector[0] = such; pt_tovector[1] = such; return pt_tovector; }
BTW - iterators in VC7.1 are not pointers. They were in VC6, but there is no guarantee that iterators are pointers. Stuart Dootson 'Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p'
Hello everyone First and foremost, THANKS TO ALL OF YOU WHO PROVIDED AN ANSWER/OPINION. I'm learning a lot. Now, as an academic curiosity, I think that if I make a vector container available outside the function (by making it global), then it should be equivalent to using:
double* pt_tovector = new double[2];
without deallocating the memory at the end of the function. Memory will remain caught until the program exits which is something I need to avoid since my code is big. In which case, since for this particular example I only need to retrieve two values, I rather make the whole functionvoid
with the two values of interestprivate
and then include a couple of tiny accessor functions, one for each value... is this solution too ugly a programming style??? ;P Many thanks again!!! -
Yes, you should return a pointer to the first element of the vector, but your code doesn't do that! You must actually write
pt_tovector = &A_vector[0]
in your program to return a pointer to the first element of the STL vectorA_vector
. Additionally, the vector can't be local to the function.