In C++, when doing something like what you see below, is the order of construction guaranteed?
Logger::Logger()
: kFilePath_("../logs/runtime.log"), logFile_(kFilePath_)
{
// ...
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, the order of construction is always guaranteed. It is not, however, guaranteed to be the same as the order in which the objects appear in the initializer list.
Member variables are constructed in the order in which they are declared in the body of the class. For example:
ais constructed first, thenb. The order in which member variables appear in the initializer list is irrelevant.