Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


why & sign is used in copy constructor

Answers were Sorted based on User's Feedback



why & sign is used in copy constructor..

Answer / sandip

To avoid local copy of object reference (&) is used in copy
constructor.
Moreover if the & is ommited then copy constructor goes in
infinite loop.
eg. if class name is Sample.

Copy constructor without &
Sample :: Sample (Sample s)
{
//Code goes here
}

and we create object as follows. ;
Sample s;
Sample s1(s);

In this scenario program will go in infinite loop.

Is This Answer Correct ?    9 Yes 1 No

why & sign is used in copy constructor..

Answer / neha

Here as address of the object is taken into consideration
thats why here & sign is used

Is This Answer Correct ?    7 Yes 3 No

why & sign is used in copy constructor..

Answer / krishnarao panchadi

Sandip, Good answer. It goes into Infinete loop because, as
the a local copy of the object is created, it will call the
constuctor one more time and another copy will be created
there and so on...

Is This Answer Correct ?    2 Yes 0 No

why & sign is used in copy constructor..

Answer / diraj kumar

it copy con command c baset of lan leval

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More STL Interview Questions

What is the disadvantage of templates ?

2 Answers   NSN, Symphony,


What are the various types of stl containers?

0 Answers  


Who wrote stl?

0 Answers  


write a c++ to define a class box with length,breadth and height as data member and input value(),printvalue() and volume() as member functions.

3 Answers  


What does stl mean in slang?

0 Answers  


Define the terms: field, record, table and database

5 Answers  


Name the different types of stl containers.

0 Answers  


What is the underlying datastructure of map?

5 Answers   BIA, Siemens,


Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }

1 Answers   Sun Microsystems,


What is the stl, standard template library?

0 Answers  


WHAT IS FIBONACCI SERIES?

4 Answers   Stewart,


To modify an, existing worksheet. What steps are involved for: 1. Inserting and deleting rows and columns. 2. Printing cell formulas 3Jld displayed values 3. Using the page setup command

0 Answers  


Categories