Is there any equivalent function of memset for vectors in C++. (Not clear() or erase() method, I want to retain the size of vector, I just want to initialize all the values)
|
|
Use
|
||
|
|
|
|
Another way, I think I saw it first in Meyers book: // Swaps with a temporary. vec.swap( std::vector(vec.size(), 0) ); It's only drawback is that it makes a copy. |
||
|
|
|
|
If your vector contains POD types, it is safe to use memset on it - the storage of a vector is guaranteed to be contiguous.
Edit: Sorry to throw an undefined term at you - POD stands for Plain Old Data, i.e. the types that were available in C. See this Wikipedia link: http://en.wikipedia.org/wiki/Plain%5Fold%5Fdata%5Fstructures |
||||||||||||||||||||
|
