quick question :
Is it possible to make a pointer that can reference a std::vector<std::vector<int> >or a std::vector<std::vector<double>> ?
Thx
|
show 1 more comment
feedback
|
|
If you must you can use the union construct
Basically the vector is always of the union intordouble so you have a pointer to it and don't need to differentiate. Please take a look at Is it a good practice to use unions in C++? | |||||||||
feedback
|
|
If using boost is an option, you could use | |||
|
feedback
|
|
(Note that only one member is accessible at a time and it's only the one you set last.)
| |||
|
feedback
|
|
A typed pointer can only point to the specified type, including types that inherit from it. Different specialisations of If this is really the sort of thing you think you need to do, you could look into using a discriminated union such as | ||||
|
feedback
|
std::vector<std::vector<int> >or astd::vector<std::vector<double> >? – Oli Charlesworth Jan 18 at 15:55doubleorint. like this:vector<vector<IntOrDouble>> *p– Evgeni Jan 18 at 16:04