Which constructor gets called while i create an array of , C/C++ Programming

Assignment Help:

Which constructor gets called while I create an array of Fred objects?


Related Discussions:- Which constructor gets called while i create an array of

Encoding and decoding, program for decode the encoded numbering format into...

program for decode the encoded numbering format into message

Luminous Jewels - The Polishing Game, Byteland county is very famous for lu...

Byteland county is very famous for luminous jewels. Luminous jewels are used in making beautiful necklaces. A necklace consists of various luminous jewels of particular colour. Nec

Basic coding syntax errors, I have a program for school and I am not unders...

I have a program for school and I am not understanding why one of the variables gets skipped or the arithmetic operators aren''t having any effect as I have tryed defining it sever

Padovan string, A Padovan string P(n) for a natural number n is defined as:...

A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P(1) = ‘Y’ P(2) = ‘Z’ P(n) = P(n-2) + P(n-3), n>2 where + denotes string concate

Change to palindrome, A palindrome is a string that reads the same from bot...

A palindrome is a string that reads the same from both the ends. Given a string S convert it to a palindrome by doing character replacement. Your task is to convert S to palindrome

Is probable to encompass virtual constructor? if yes, Is it probable to enc...

Is it probable to encompass Virtual Constructor? If yes, how? If not, Why?

C, A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P...

A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P(1) = ‘Y’ P(2) = ‘Z’ P(n) = P(n-2) + P(n-3), n>2 where + denotes string concatenation. For a string of the c

Calculation of mortgage interest rates, 1. When developing this project in ...

1. When developing this project in a Win32 Console Applications that includes the precompiled headers, enter in the Name: box, PRJ2[Your Full Last Name][Your First Initial] with no

3/15/2013 5:58:52 AM

A: Fred''s default constructor

class Fred { public: Fred();

...

};

int main()

{

Fred a[10];  calls the default constructor 10 times

Fred* p = new Fred[10]; calls default constructor 10 times

...

}

If your class doesn''t contain a default constructor, you''ll get a compile-time error while you try to create an array by using the above simple syntax:

class Fred {

public:

Fred(int i, int j); suppose there is no default constructor

...

};

int main()

{

Fred a[10]; ERROR: Fred doesn''t contain a default constructor

Fred* p = new Fred[10]; ERROR: Fred doesn''t contain a default constructor

...

}

Though, even if your class already contain a default constructor, you must try to use std::vector instead of an array (arrays are evil). Std::vector allows you decide to use any constructor, not only the default constructor:

#include int main()

{

std::vector a(10, Fred(5,7));  the 10 Fred objects in std::vector a will be initialized along with Fred(5,7)

...

}

Although you have to use a std::vector instead of an array, there are times while an array may be the right thing to do, and for those, you may need the "explicit initialization of arrays" syntax. Here''s how:

class Fred {

public:

Fred(int i, int j);  assume there is no default constructor

...

};

int main()

{

Fred a[10] = {

Fred(5,7), Fred(5,7), Fred(5,7), Fred(5,7), Fred(5,7), // The 10 Fred objects are

Fred(5,7), Fred(5,7), Fred(5,7), Fred(5,7), Fred(5,7) // initialized using Fred(5,7)

};

...

}

Certainly you don''t contain to do Fred(5,7) for every entry you can put in any numbers you wish, even parameters or other variables.

Lastly, you can use placement-new to initialize manually the elements of the array. Warning: it''s unattractive: the raw array can''t be of type Fred, so you''ll require a bunch of pointer-casts to do things such as compute array index operations. Warning: its compiler- and hardware-dependent: you''ll require making sure the storage is aligned along with an alignment i.e. at least as strict as is needed for objects of class Fred. Warning: it''s boring to make it exception-safe: you''ll require to manually destructing the elements, by including in the case while an exception is thrown part-way through the loop which calls the constructors. But if you really wish to do it anyway, read up on placement- new. (BTW placement-new is like magic which is used inside of std::vector. The difficulty of getting everything right is still another reason to use std::vector.)

By the way, did I ever denote that arrays are wicked? Or did I denote that you have to use a std::vector unless there is a compelling cause to use an array?

 

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