vector<SomeClass>::resize

P

pauldepstein

Suppose a vector taking elements in SomeClass is resized from length 5
to length 8 using the resize method. SomeClass is a class which takes
a variety of constructors SomeClass contains a constructor
SomeClass() another constructor, SomeClass(int) etc.

What then would the values be of the new values being appended via the
resize method. Would they be equal to SomeClass() ?

In other words, would they be initialized with the empty parameter
list?

Thank you,

Paul Epstein
 
D

dasjotre

What then would the values be of the new values being appended via the
resize method. Would they be equal to SomeClass() ?

yes. all sequence containers define resize as

void resize(size_type sz, T c=T() )

DS.
 
T

terminator

yes. all sequence containers define resize as

void resize(size_type sz, T c=T() )

in that case the copy constructor is used . I mean every new object is
copied from c .

regards,
FM.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,280
Latest member
BGBBrock56

Latest Threads

Top