pass lambda function c++ code example

Example 1: lambda c++

#include <iostream>
#include <string>
 
// returns a lambda
auto makeWalrus(const std::string& name)
{
  // Capture name by reference and return the lambda.
  return [&]() {
    std::cout << "I am a walrus, my name is " << name << '\n'; // Undefined behavior
  };
}
 
int main()
{
  // Create a new walrus whose name is Roofus.
  // sayName is the lambda returned by makeWalrus.
  auto sayName{ makeWalrus("Roofus") };
 
  // Call the lambda function that makeWalrus returned.
  sayName();
 
  return 0;
}

Example 2: cpp lambda function

#include <iostream>
using namespace std;

bool isGreater = [](int a, int b){ return a > b; }

int main() {
	cout << isGreater(5, 2) << endl; // Output: 1
	return 0;
}

Tags:

Cpp Example