Currently, I'm creating my own vector class, and I like to create instances of any class via shared pointers. So, is there a way to overload operator[]
in order to achieve the following code?
class myVector {
public:
myVector(/*some params*/);
~myVector();
// Some kind of overloading of operator []
// Some other code
private:
// private container array
double* vec;
// Some other code
};
int main ()
{
std::shared_ptr<myVector> sp = std::shared_ptr<myVector>(new myVector(/*some params*/));
double val = sp[1];
return 0;
}
You could declare the
[]
operator for yourmyVector
class as follows (returning a reference to the element so you have read and write access):You can then use this operator on the object pointed to by the
shared_ptr
by first dereferencing that. Here's a runnable example, where I've added some 'dummy' code to the constructor just to make it do something: