473,467 Members | 1,477 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

vector.push_back - pushes values or references?

Hi,

I'm a little new to stl so bear with me...Say I have the following
code:

vector<intvec;
int i = 3;
vec.push_back(i);
i=4;
cout<<vec.at(0)<<endl;

Looking at the signature of push_back, it seems to take a reference:

void push_back( const TYPE& val );

I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?

Cheers,

SR

Feb 17 '07 #1
6 21001
"Siam" <si*****@gmail.comwrote in message
news:11**********************@t69g2000cwt.googlegr oups.com...
Hi,

I'm a little new to stl so bear with me...Say I have the following
code:

vector<intvec;
int i = 3;
vec.push_back(i);
i=4;
cout<<vec.at(0)<<endl;

Looking at the signature of push_back, it seems to take a reference:

void push_back( const TYPE& val );

I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?

Cheers,

SR
..push_back() eventually uses the copy constructor of the object. So most
likly it accepts a reference, then calls the copy constructor on the
reference it has. Easy to determine this, just make a class with a private
copy constructor and try to make a vector out of it and use .push_back()
Feb 17 '07 #2
Siam wrote:
Hi,

I'm a little new to stl so bear with me...Say I have the following
code:

vector<intvec;
int i = 3;
vec.push_back(i);
i=4;
cout<<vec.at(0)<<endl;

Looking at the signature of push_back, it seems to take a reference:

void push_back( const TYPE& val );

I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?
Passing by reference insures only one copy of the object is made. If
the function used pass by value, the object would be copied twice.

--
Ian Collins.
Feb 17 '07 #3
Ian Collins wrote:
Siam wrote:
>>Hi,

I'm a little new to stl so bear with me...Say I have the following
code:

vector<intvec;
int i = 3;
vec.push_back(i);
i=4;
cout<<vec.at(0)<<endl;

Looking at the signature of push_back, it seems to take a reference:

void push_back( const TYPE& val );

I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?

Passing by reference insures only one copy of the object is made. If
the function used pass by value, the object would be copied twice.
Oops, s/insures/ensures/ :)

--
Ian Collins.
Feb 17 '07 #4
* Siam:
Hi,

I'm a little new to stl so bear with me...Say I have the following
code:

vector<intvec;
int i = 3;
vec.push_back(i);
i=4;
cout<<vec.at(0)<<endl;

Looking at the signature of push_back, it seems to take a reference:

void push_back( const TYPE& val );

I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?
Because std::vector can be used for any copyable type, and for some
types an object may have a lot of data to be copied, and/or copying the
object may involve dynamic allocation, which is (relatively) slow.

The reference passing means that an object that is expensive to copy is
only copied once, namely when copied into the vector's storage.

It's not copied in the process of being passed as argument, because with
a reference argument and a resonable compiler all that's passed (if
anything is passed!) is the object's memory address.

Using 'T const&' (or equivalently 'const T&') is a very common idiom for
objects that may be expensive to copy.

E.g., instead of writing a formal argument as 'std::string s', you
should as a matter of course write 'std::string const& s', even if
std::string might be expected to be heavily optimized and perhaps
directly supported by the compiler.

Caveat: don't do that for function results, e.g. don't declare a
function as 'std::string const& foo()' instead of 'std::string foo()'.

Because that might result in a dangling reference (the referred to
object doesn't exist after the function call has returned) and thus most
probably Undefined Behavior where undesirable things may happen.

Hope this helps,

- Alf
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Feb 17 '07 #5
Ah great, thanks all :)

SR

Feb 17 '07 #6
Siam wrote:
>
void push_back( const TYPE& val );
Maybe, but that's not required by the language definition. These things
are specified in a different way. The requirement is that
vec.push_back(object) puts a copy of object into vec. Passing by value
is okay, as is passing by const reference.
I wouldve thought that means the int i pass to the vector isn't
copied, but a reference to the original int is placed in the vector.
However, the above code returns 3, not 4, indicating the int has been
copied into the vector (on printing memory addresses, the ints are
stored in different memory addresses). My question is, why does the
push_back function take a reference, but yet still store a copy of the
object in the vector?
The reason for storing by value is that that's what the specification
says. <gThe design of STL assumes that objects are cheap to create and
to copy, so STL algorithms and containers deal with values, not
references. If you need reference semantics, use TR1's reference_wrapper
(also available from Boost), or use vector<TYPE*>. In both cases you
have to ensure that your objects hang around at least as long as the
container does. (For more details on reference_wrapper, see chapter 8 of
my book, "The Standard C++ Library Extension"; for details on TR1's
shared_ptr, see chapter 2).

--

-- Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com)
Author of "The Standard C++ Library Extensions: a Tutorial and
Reference." (www.petebecker.com/tr1book)
Feb 17 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: David Jones | last post by:
Hi I have a list of values stored in a vector e.g. std::vector<int> x; x = 1; x = 4; x = 2; x = 4;
6
by: kittykat | last post by:
Hello, I am writing a program that will read each line of a file into a vector of vectors. This data will then be analysed. Here is what i have done: typedef vector<string> lines; ......
6
by: Matthias | last post by:
Hi, say I have a vector v1: std::vector<SomeType> v1; and I need a vector v2 of pointers to v1's elements: std::vector<SomeType*> v2;
5
by: Billy Patton | last post by:
I have a polygon loaded into a vector. I need to remove redundant points. Here is an example line segment that shows redundant points a---------b--------c--------d Both b and c are not...
8
by: imutate | last post by:
I have a std::vector with each element being a class, I push_back elements and then store values in the class object, later I look at these objects and the values are null. In essence: class...
2
by: ernesto | last post by:
Hi: I want to create my own vector class; I want to provide methods like: class Vector { public: void add(const Object* aVal); void remove(const Object* aVal); };
13
by: arnuld | last post by:
this is the code: ------------------------------------------------------------------------- #include <iostream> #include <string> #include <vector> struct Pair { std::string name;
14
by: meisterbartsch | last post by:
Hi, I want to assign predefined vallues to a vector, like: std::vector<doubletr; tr={3.36,2.09,1.47,1.1,0.87,0.72}; how do i do this? Am I able to assign values without using .push_back();...
10
by: bejiz | last post by:
Hello, I would like to make a vector which can store vectors within. It is for finding the permutations of some numbers. I thought it would be easy to write some line of code to do this, but...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.