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 6239881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:28:03+00:00 2026-05-24T11:28:03+00:00

I have the following template class template <typename threadFuncParamT > class ThreadPool { //

  • 0

I have the following template class

template <typename threadFuncParamT >
class ThreadPool
{
    // number of threads to be launced initially and added to thread pool.
    ThreadPool( pThreadFunc pFunction, RtsInt16_t minThreads, RtsInt16_t maxThreads, RtsInt16_t maxExecCount);
};

Now i want to use object of another class

struct myStruct 
    //...
};

class MyClass 
{
private:

    ThreadPool<myStruct *> pool;
};

My question is how to create ThreadPool with constructor arguments in MyClass constructor as I don’t have default constructor?

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

    Assuming you mean “as I don’t have default constructor in ThreadPool:

    MyClass::MyClass()
     : pool( &thrdFunc, 7, 42, 12 )
    {
    }
    

    Assuming you mean “as I don’t have default constructor in MyClass:

    MyClass has a default constructor as long as you either provide your own or you do not provide any other constructor. As it is in your question, it has a compiler-generated default constructor. Of course, that wouldn’t compile, because the compiler-generated default constructor would simply call the default constructors of all (base classes and) data members, and the only data member pool is of a class that doesn’t provide a default constructor.
    So you need to provide your own default constructor, as shown in the example above.

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

Sidebar

Related Questions

I have the following class definition: template<typename QueueItemT> class QueueBC { protected: QueueBC() {}
I have the following code: class TimeOutException {}; template <typename T> class MultiThreadedBuffer {
I have the following definitions: template<typename T1, typename T2> class Test2 { public: static
I have the following function as the constructor for a class: template<typename T> void
I have the following setup: A templated class SpecialModel: template<typename A, typename B> class
I have the following small code: template <typename T> class V { public: T
I have the following code: template<typename T, typename Allocator = std::allocator<T> > class Carray
I have the following class template<typename hi_t, typename lo_t> struct int_t { hi_t hi;
I have the following templated class structure struct TraitA{}; struct TraitB{}; template<typename trait> struct
I have a problem with the following code: template <typename U> class lamePtr {

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.