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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:50:36+00:00 2026-05-19T04:50:36+00:00

I wonder where should we use lambda expression over functor in C++. To me,

  • 0

I wonder where should we use lambda expression over functor in C++. To me, these two techniques are basically the same, even functor is more elegant and cleaner than lambda. For example, if I want to reuse my predicate, I have to copy the lambda part over and over. So when does lambda really come in to place?

  • 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-19T04:50:37+00:00Added an answer on May 19, 2026 at 4:50 am

    1) It’s trivial and trying to share it is more work than benefit.

    2) Defining a functor simply adds complexity (due to having to make a bunch of member variables and crap).

    If neither of those things is true then maybe you should think about defining a functor.

    Edit: it seems to be that you need an example of when it would be nice to use a lambda over a functor. Here you go:

    typedef std::vector< std::pair<int,std::string> > whatsit_t;
    
    int find_it(std::string value, whatsit_t const& stuff)
    {
      auto fit = std::find_if(stuff.begin(), stuff.end(), [value](whatsit_t::value_type const& vt) -> bool { return vt.second == value; });
    
      if (fit == stuff.end()) throw std::wtf_error();
    
      return fit->first;
    }
    

    Without lambdas you’d have to use something that similarly constructs a functor on the spot or write an externally linkable functor object for something that’s annoyingly trivial.

    BTW, I think maybe wtf_error is an extension.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder why I should use XHTML instead of HTML. XHTML is supposed to
I wonder how I should use the GTree (from GLib) to store data? Every
I wonder if I should use the CAS protocol or OAuth + some authentication
I have this db below. I wonder how I should use the ID to
For the use in a Servlet based application I've written a class to store
Wonder what the difference between: static PROCESSWALK pProcess32First=(PROCESSWALK)GetProcAddress(hKernel,Process32First); ... pProcess32First(...); what is hKernel? Look
in the tutorial i can use either: public function configure() { $this->setWidgets(array( 'type' =>
While looking up the answer to this question: Why is an out parameter not
Consider the following code (C# 4.0): public class Foo : LambdaExpression { } This
I am new to C#, Parallel.ForEach , and .NET in general. I want to

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.