Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8092935
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T20:23:38+00:00 2026-06-05T20:23:38+00:00

How does something like this get initialized in Cpp, when in my main ,

  • 0

How does something like this get initialized in Cpp, when in my main, I do: Testing test?

class Testing
{
public:
    Testing();
    void initalize();
    ~Testing();

    void run();

private:
    int x;
    int y;
    int z;

    bool isBugged;

    OtherClass otherClass_;
};

What is the order?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T20:23:39+00:00Added an answer on June 5, 2026 at 8:23 pm

    The class constructor gets called first and an initializer list may be used to parameterize member constructor calls, otherwise their default constructors are used at the point of class constructor entry.

    Class() : otherClass_("fred", 42) {
    //ctor body
    }
    

    would invoke OtherClass‘s (OtherClass(char *name, int age), say) constructor before the Class‘s ctor body. Otherwise the default constructor (parameterless) would be used. But as the members are available in the body they are constructed before the body is entered. The example above is an initializer list and is the opportunity for Class‘s constructor to explicitly invoke member constructors which would otherwise resolve to default constructor calls at that point.

    The order of member construction is the order in which they appear (of declaration) in the class declaration. Your compiler should warn you if this differs to the order you appear to be calling constructors in the initializer list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does something like this make any sense at all in Java? class A<T extends
A java class does something like the following public class Foo { private final
I am trying to optimize a query that does something like this: SELECT ...
I am working on a Bash shell script that does something like this: #!/bin/bash
I have a Visual Studio 2008 C++ application that does something like this: template<
I'm trying something like this, but this example does not work. jsObj = {};
Does .NET Transliteration library exists ? Note that this is not translation, something like
I'm new to gradle. I can see something like project.getPlugins() . what does this
Very strange issue... I have something like this in my Controller: public ActionResult Initialize(IEnumerable<MyModel>
I have some threads fishing into a queue for jobs, something like this: class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.