Avatar of Evan Li
Evan Li
Flag for United States of America asked on

c++ syntax question

I do not know how to read following statement:

    auto t = create_task([]() -> int
    {
        return 42;
    });

I can understand Lamda part of the code, but I could not understand "->int" part, what does it mean, how does it affecting the result? Thank you for any help.
C++

Avatar of undefined
Last Comment
evilrix

8/22/2022 - Mon
evilrix

It's a function that is being passed a C++14 Lambda function that returns an int, in this case the value 42.

More information on C++ lambda functions:

Pawan Kumar

-> This is the Arrow Operator. It is a dereference operator that is used exclusively with pointers to objects that have members. This operator serves to access the member of an object directly from its address.  For accessing object variables and methods via pointer to object.

If p_emp is a pointer to an object of type Employee, then to assign the value "zara" to the first_name member of object emp, you would write something as follows:

strcpy(p_emp->first_name, "zara");

Below will also explain you the meaning of :: ,->, : in C++?

Ref - https://www.quora.com/What-is-the-meaning-of-in-C++

I hope it helps.
evilrix

It could be re-written like this to make it a little clearer:

auto lambda = []() -> int { return 42; }; // lambda is just a variable that holds the lambda function
auto t = create_task(lambda); // this is now passing the function object to the create_task function

Open in new window

Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
ASKER CERTIFIED SOLUTION
evilrix

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Evan Li

ASKER
OK, I found the answer, "->int" means that the lambda function will return a integer. Thanks for your attention.
Evan Li

ASKER
You are right, it is the return type
evilrix

Indeed, but that's only in this case. That syntax is specifically used to allow the use of the decltype operator to be able to specify the return type of a lambda from one or more of the passed arguments. In this case, it's completely pointless, because the return type isn't being deferred from a passed argument.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Pawan Kumar

Thnx evilrix ! I got in pointers that why got confused. Thanx for the info.
evilrix

No worries, Pawan. Have a good day, sir.