pointers
- From: Alexander <rope-walker yandex ru>
- To: gtkmm-list gnome org
- Subject: pointers
- Date: Sat, 14 Jan 2006 11:19:40 +0200
here is such functions:
std::list<double>* func1()
{
std::list<double> Out = new std::list<double>;
Out->push_back(0.0);
...
return Out;
}
and main func.:
...
std::list<double> z;
z = func1();
...
Is it right?
error in memory address!! Why?
Or i must :
std::list<double> z = new ....?
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]