c++ - What is the purpose and function of the dereference operator in this map? -


std::map< int, std::vector< raddr > * > writesetlist;

i understand how map works instance keys of type int , values of type vector holds user defined type "raddr" , name of map writesetlist. dont understand dereference operator doing. value type pointer vector? in advance. couldn't find examples this...

that not dereference operator, rather declaration of pointer type. map binds int std::vector<raddr>*, pointer vector of raddr


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -