returned vector of function is zeroized

H

Huibuh

The following code is a function called from the main. Sence is to
initialize a vector of the dimension of "a". "b" is the according value (all
the same in a vector).

The problem is that the initialization is done the right way (controled by
the output) but the returned vector is empty - meaning the pointer is
showing zero.



vector<int>* initialize (int a, vector<int>* vec, int b)

{

vector<int> ve;



vec=&ve;

ve.reserve(a);

for (int i=0; i<=a-1; i++)

ve=b;

for (i=0; i<=a-1; i++)

cout << i << ". value : "

<< ve << endl;

return vec;

ve.clear();

}





What is wrong???

I have tried it before without using a pointer - same result!
 
P

Pete

Huibuh said:
The following code is a function called from the main. Sence is to
initialize a vector of the dimension of "a". "b" is the according
value (all the same in a vector).

The problem is that the initialization is done the right way
(controled by the output) but the returned vector is empty - meaning
the pointer is showing zero.



vector<int>* initialize (int a, vector<int>* vec, int b)

{

vector<int> ve;



vec=&ve;

ve.reserve(a);

for (int i=0; i<=a-1; i++)

ve=b;

for (i=0; i<=a-1; i++)

cout << i << ". value : "

<< ve << endl;

return vec;

ve.clear();

}





What is wrong???

I have tried it before without using a pointer - same result!


First, you're returning a address of a local. Also, I'm not sure what you're
trying to do with "vec", but I'm almost sure it isn't what you want.

What are you trying to do?

- Pete
 
L

Leor Zolman

The following code is a function called from the main. Sence is to
initialize a vector of the dimension of "a". "b" is the according value (all
the same in a vector).

The problem is that the initialization is done the right way (controled by
the output) but the returned vector is empty - meaning the pointer is
showing zero.



vector<int>* initialize (int a, vector<int>* vec, int b)

{

vector<int> ve;



vec=&ve;

ve.reserve(a);

for (int i=0; i<=a-1; i++)

ve=b;

for (i=0; i<=a-1; i++)

cout << i << ". value : "

<< ve << endl;

return vec;

ve.clear();

}





What is wrong???


You're creating an entire local vector in your function, setting it up, and
then it gets destroyed upon exit from the function. How about just
dispensing with the local vector and using the pointer your function is
given:

#include <iostream>
#include <vector>
using namespace std;


vector<int>* initialize (int a, vector<int>* vec, int b)

{

//vector<int> ve;

// vec=&ve;

vec->reserve(a);

for (int i=0; i<=a-1; i++)

(*vec)=b;

for (i=0; i<=a-1; i++)

cout << i << ". value : "

<< (*vec) << endl;

return vec;
}




int main()
{
vector<int> x;

vector<int> *vecp = initialize(10, &x, 1000);
cout << x[0] << " " << x[1] << " " << x[2] << endl;
return 0;
}
I have tried it before without using a pointer - same result!

Not sure what you mean, but not sure it matters. You /could/ have the
vector be returned by value, but that would be rather inefficient.
-leor
 
B

Bill Seurer

Huibuh said:
vector<int> ve;
vec=&ve;

Ugh! Never return the address of a local variable from a function. You
should be passing the address of where you want the results (or a
reference to them) into the function for something like this or
returning the actual vector if you want a copy of it.
return vec;
ve.clear();

Do you ever expect that clear function to be called? If so, how?
 
J

John Harrison

Huibuh said:
The following code is a function called from the main. Sence is to
initialize a vector of the dimension of "a". "b" is the according value (all
the same in a vector).

The problem is that the initialization is done the right way (controled by
the output) but the returned vector is empty - meaning the pointer is
showing zero.



vector<int>* initialize (int a, vector<int>* vec, int b)

{

vector<int> ve;



vec=&ve;

ve.reserve(a);

for (int i=0; i<=a-1; i++)

ve=b;

for (i=0; i<=a-1; i++)

cout << i << ". value : "

<< ve << endl;

return vec;

ve.clear();

}





What is wrong???

I have tried it before without using a pointer - same result!


Don't use a pointer, why did you think a pointer would help? They make
things more complicated not less.

Also you use reserve wrongly, reserve does NOT change the size of a vector,
so your code is putting values in a vector with zero size.

Do it like this

vector<int> initialize (int a, int b)
{
vector<int> ve(a);
for (int i=0; i<=a-1; i++)
ve=b;
return ve;
}

Simple really.

john
 
H

Huibuh

Thanks to all of you, your help was very appreciated and I finally was
successful. But now I have a similar problem with RETURN correlated with a
pointer. If you are interested please see my threat

pointer return: address correct / value nonesense

Happy eastern
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,164
Messages
2,570,898
Members
47,439
Latest member
shasuze

Latest Threads

Top