Should my constructors employ"assignment"or"initialization, C/C++ Programming

Assignment Help:

Should my constructors employ "assignment" or "initialization lists"?

 

 


Related Discussions:- Should my constructors employ"assignment"or"initialization

Explain the #undef directive, The #undef Directive This directive undef...

The #undef Directive This directive undefines a previously explained macro. For, example the following will give an error since PI is undefined.                 #define PI 3

Boardcoloring, color representation 0,1,2,3,4,5,6,7,.......

color representation 0,1,2,3,4,5,6,7,.......

Hungarian notation, describe how identifiers of different data type are def...

describe how identifiers of different data type are defined using this notaion?

C program for compare two strings , Normal 0 false false fa...

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4

Demonstration using moss open source machine translation, Demonstration usi...

Demonstration using Moss Open Source Machine Translation Project Description: Moses is an open source Statistical Machine Translation System. I need someone to provide me a d

Thermodynamics, the program that solve the efficiency of otto cycle

the program that solve the efficiency of otto cycle

Loops, how to make a diamond from steric

how to make a diamond from steric

Define the bitwise operators in c language, Define the Bitwise Operators in...

Define the Bitwise Operators in c language? C has distinction of supporting special operators that known as bit wise operators for manipulation of data at bit level. These oper

Why are all header files not declared in every c program, Why are all heade...

Why are all header files not declared in every C program? - Declaring all header files in each program would result in increase in overall file size and load of the program. It

Give example of the for loop, The for Loop For loop is the controlled f...

The for Loop For loop is the controlled form of loop. The general format of this : for( initialize ; test ; update)                  {                     statements;

3/15/2013 6:01:10 AM

A: Initialization lists. Actually constructors must initialize as a rule all member objects in the initialization list. One exception is discussed further down.

Suppose the following constructor which initializes member object x_ by using an initialization list: Fred::Fred() : x_(whatever) { }. The most common benefit of doing this is improved performance. For instance, if the expression whatever is the same kind as member variable x_, the result of the expression is directly constructed inside x_ the compiler does not make a separate copy of the object. Though the types are not the same, typically the compiler is able to do a better job with initialization lists than with assignments.

The other (inefficient) way to build constructors is through assignment, like: Fred::Fred() { x_ = whatever; }. In this particular case the expression whatever causes a separate, temporary object to be developed, and this temporary object is passed into the x_ object''s assignment operator. Then that temporary object is destructed at the;. That''s incompetent.

As if that wasn''t bad sufficient, there''s another source of inefficiency while using assignment in a constructor: the member object will get completely constructed by its default constructor, and this might, for instance, allocate some  of the default amount of memory or open some default file. All of this work could be for naught if the whatever expression and/or assignment operator causes the object to shut that file and/or release that memory (for example if the default constructor didn''t allocate a large sufficient pool of memory or if it opened wrong file).

Conclusion: All of other things being equal, your code will run faster if you use initialization lists instead of assignment.

Note: There is no performance difference if the kind of x_ is some built-in/intrinsic type, like int or char* or float. However even in these cases, in according to me preference should be to set those data members in the initialization list instead of via assignment for consistency. Another symmetry argument in favor of by initialization lists even for built-in/intrinsic types: non-static const & non- static reference data members can''t be assigned a value in the constructor, thus for symmetry it makes sense to initialize everything in the initialization list.

For the exceptions now every rule has exceptions and there are a couple of exceptions to the "use initialization lists" rule. Bottom line is to employ common sense: if it''s cheaper, better, faster, etc. to not use them, then by every means, don''t use them. It might happen while your class has two constructors that require initializing the object''s data members in distinct orders. Or it might happen while two data members are self-referential. Or while a data- member require a reference to the this object, and you wished to ignore a compiler warning regarding using the keyword prior to the {that start the constructor''s body (while your specific compiler happens to issue that specific warning). Or while you require to do an if/throw test on a variable ( global, parameter etc.) prior to via that variable to initialize one of your this members. This list is not exhaustive

 

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd