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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:21:28+00:00 2026-06-15T11:21:28+00:00

How can I operate std::async call on a member function? Example: class Person{ public:

  • 0

How can I operate std::async call on a member function?

Example:

class Person{
public:
    void sum(int i){
        cout << i << endl;
    }
};

int main(int argc, char **argv) {
    Person person;
    async(&Person::sum,&person,4);
}

I want to call to sum async.

Person p;
call async to p.sum(xxx)

I didnt figure out if i can do it with std::async.
Dont want to use boost.
Looking for a one line async call way.

  • 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-15T11:21:29+00:00Added an answer on June 15, 2026 at 11:21 am

    Something like this:

    auto f = std::async(&Person::sum, &p, xxx);
    

    or

    auto f = std::async(std::launch::async, &Person::sum, &p, xxx);
    

    where p is a Person instance and xxx is an int.

    This simple demo works with GCC 4.6.3:

    #include <future>
    #include <iostream>
    
    struct Foo
    {
      Foo() : data(0) {}
      void sum(int i) { data +=i;}
      int data;
    };
    
    int main()
    {
      Foo foo;
      auto f = std::async(&Foo::sum, &foo, 42);
      f.get();
      std::cout << foo.data << "\n";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class of interest (call it X). I have a std::list<X*> (call
Given a declaration like this: class A { public: void Foo() const; }; What
If I have: Class A { // bunch of stuff here public void intitialize()
Why would I use a member function when I can pass a static function
If I have a function that can operate on both sets and lists and
I want to develop a Facebook connect application that can operate both inside a
Can I change the field public virtual ClassOne ClassOne { get; set; } to
We have a third-party DLL that can operate on a DataTable of source information
I have a collection of elements that I need to operate over, calling member
I am looking for an embeddable scripting runtime that can operate entirely in memory

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.