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

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -