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++
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.
-> 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++?
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 functionauto t = create_task(lambda); // this is now passing the function object to the create_task function
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.
More information on C++ lambda functions: