return reference to element of dynamic array in C++? -


is how return reference element of dynamically allocated array index ??

    int& dynamic_array::operator[](unsigned int i) {     if (i >= get_size())         throw exception(subscript_range_exception);     else         return array[i]; } 

yes, correct – alexander shishenko

thanks


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -