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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:55:27+00:00 2026-05-31T14:55:27+00:00

I am trying to run the following program using boost::thread. #include <boost/thread.hpp> #include <iostream>

  • 0

I am trying to run the following program using boost::thread.

#include <boost/thread.hpp>
#include <iostream>

using namespace std;

class test{
public:
  void hello(int i)
  {
     cout << i << " ";
  };
};

int main(int argc, char* argv[])
{
  class test t;
  boost::thread thrd(t.hello, 10);
  thrd.join();
  return 0;
}

It is throwing an error while compiling as given below:

thread.c:17:33: error: no matching function for call to
‘boost::thread::thread(, int)’
/usr/include/boost/thread/detail/thread.hpp:236:9: note: candidates
are: boost::thread::thread(F, A1) [with F = void (test::*)(int), A1 =
int] /usr/include/boost/thread/detail/thread.hpp:202:9: note:
boost::thread::thread(boost::detail::thread_move_t)

I am using boost 1.42. I have also tried old style boost::thread creation.

When hello() is not a class function, everything goes fine. Please let me know how can I fix it?

  • 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-31T14:55:29+00:00Added an answer on May 31, 2026 at 2:55 pm

    The problem is you are try to bind to a member function try the following (i don’t have your boost version so have no idea if this works for sure)

    boost::thread thrd(&test::hello, &t, 10);
    

    Failing that you can use a binder

    boost::thread thrd(
        boost::bind(&test::hello, &t, 10));
    

    If your compiler is new enough you can use the standard library equivalents of all of those by changing the boost namespace for std:: (the placeholder are in std::placeholders not the global namespace).

    std::thread(... //c++11
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to run the following code in Qt Creator on Win7 64bit. #include <boost/date_time/posix_time/posix_time.hpp>
Hey everyone, I am trying to run the following program, but am getting a
Trying to run my program in FreeBSD OS, I have the following results: $
When i am trying to run my program it is giving the following error
When I am trying to run tomcat using startup.bat I get the following error,
I'm trying to run this c++ program I wrote. I'm getting the following errors
I am trying to reverse a C style string using the following simple program.
I am trying to run a class, but I get the following error: java.lang.NoClassDefFoundError:
I'm trying to run the following program, which calculates roots of polynomials of degree
I'm writing a cross-platform server program in C++ using Boost.Asio. Following the HTTP Server

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.