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

  • SEARCH
  • Home
  • 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 7553267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:00:06+00:00 2026-05-30T11:00:06+00:00

While designing the class, I always get confused what to put in Constructor and

  • 0

While designing the class, I always get confused what to put in Constructor and what to put in Init. So could you please give your opinion on this. Please find my queries below.

  1. Should class have separate Init function?
  2. If Yes, what should go in the constructor of the class and Init function of the class.

From my understanding, I generally tend to always have Init function(for some lazy initialization). For example, if I have to design ConnectionPool class then I would something like this.

class ConnectionPool
{
    string _host;
    bool _isInit;   //For separate Init, we need this

    public:
    ConnectionPool(string host)
        :_host(host),
         _isInit(false)
    {}
    void Init();
    bool isInit(){return _isInit;}
}

//This will actually make connections
ConnectionPool::Init()
{
    //Create few connections
    //if successful
    _isInit=true;
}
int main()
{
    ConnectionPool cp("host");

    //Few other init & wait for request
    //Now I have the request
    if(cp.isInit() == false)
        cp.Init();
}

But lately, I can not resists having separate Init function. So could you please tell me what is the good practice.

  • 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-05-30T11:00:08+00:00Added an answer on May 30, 2026 at 11:00 am

    Usually init functions are private and are just used by contructors. This is so that you do not need the same common code in the various contructors and hence less prone to code bloat and errors.

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

Sidebar

Related Questions

While designing an interface for a class I normally get caught in two minds
I'm designing classes for my application (network tool). I this base class: class Descriptor
This question came up while designing a dedicated ACL system for a custom application,
I have been trying different techniques while designing this application, which to me is
While designing a service class should it be singleton in java? Generally DAO is
While designing a table my colleague here says that I should avoid identity column
While designing my site I am constantly faced with the issue of whether its
while designing my user control, i encountered the following problem: i would like to
While designing a new WPF application I noticed exceptions not being thrown during data
What are the topics we should pay attention while designing web site for Internet

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.