Standard C++ Library Class Reference
Manuals
Brands
HP Manuals
Server
HP NonStop G-Series
211
212
213
214
215
216
217
218
219
220
Output:
FALSE TRUE
Warning
If your compiler does not support default template parameters, then you need to always supply the
Allocator template argument. For instance, you'll have to write :
vector<int, allocator>
instead of :
vector<int>
1
...
...
210
211
212
213
214
...
...
516