Should you employ this pointer in the constructor?, C/C++ Programming

Assignment Help:

Should you employ this pointer in the constructor?


Related Discussions:- Should you employ this pointer in the constructor?

Creates and implements a class to represent the queue, Purpose This ass...

Purpose This assignment is an exercise in implementing the queue ADT using a singly-linked list. This assignment also introduces the concept of templates. Assignment Th

#title minimization and maxmization assignment problem, how we can code in ...

how we can code in c++ for assignment problem (operation research) method to mkinimization and mamization

Explain external variables, External Variables Different functions of t...

External Variables Different functions of the similar program can be written in different source files and can be compiled together. The scope of a global variable is not limit

D, drawbacks in assignments in engeenirng

drawbacks in assignments in engeenirng

Define a structure in c++, Define a structure in C++: Write a program ...

Define a structure in C++: Write a program a structure in c++ program. void main() {                 struct player                 {                 char name[2

Assignment, manupulates operator precidence

manupulates operator precidence

Write a program that computes the cost of a long distance ca, Write a progr...

Write a program that computes the cost of a long distance call. The cost of the call is determined according to the following rate schedules. a. A call made between 8:00 AM and 6:

What is inline function, Inline function: It is a function without prot...

Inline function: It is a function without prototype. The function is defined above main. The function should  be  declared  above  main  function.                  Declaring

3/15/2013 6:02:15 AM

A: Some of people feel you must not use the pointer in a constructor since the object is not fully formed yet. Though, you can use this in the constructor (in the {body} and even in the initialization list) if you are careful.

Here is something which always works: the {body} of a constructor (or a function called from the constructor) can access reliably the data members declared in a base class and/or the data members declared in the constructor''s own class. It is because all of those data members are guaranteed to have been completely constructed by the time the constructor''s {body} starts executing.

Here is something which never works: the {body} of a constructor (or a function called from the constructor) can''t get down to a derived class via calling a virtual member function i.e. overridden in the derived class. If your aim was to obtain to the overridden function in the derived class, you won''t obtain what you wish. Note down that you won''t get to the override in the derived class independent of how you call virtual member function: explicitly via the this pointer (for example this->method()), implicitly using this pointer (for example method()), or even calling some other function which calls the virtual member function onto your this object. The bottom line is this: even if the caller is building an object of a derived class, throughout the constructor of the base class, your object is not still of that derived class.

Here is something which sometimes works: if you pass any data members in this object to another data member''s initialize, you have to ensure that the other data member has already been initialized. You can determine whether the other data member has (or has not) been initialized by using some straightforward language rules which are independent of the particular compiler you''re utilizing. The bad news is that you ought to know those language rules (for example: base class sub-objects are initialized first (look up the order if you have multiple and/or virtual inheritance!), then data members described in the class are initialized in the order wherein they appear in the class declaration). If you don''t know about these rules, then don''t pass any data member from the object (regardless of whether or not you use explicitly this keyword) to any other data member''s initializer! And if you do know about the rules, be careful please.

 

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