(Concept Question) Delegates and Lambda Expressions [Answered]
I'm so confused about the concept of Delegates and Lambda Expression
Specifically this code
(movie) => new string('*', (int)movie.Rating)
Is this suppose to create a new method in place of (movie)? I looked through the lowered C# code on sharplab but it's even more confusing o-071 Replies
is the same as doing
What does the
(movie)
denote?
Like what does that syntax do?Adding to Aaron's answer, Lambda's can work as closures, unlike normal methods.
I think closures are a bit too far-fetched concept for me atm
Looking at the the lambda code above
its saying it takes a parameter called movie
you can be more explicit if you'd like
So it generates a random method
OtherMethod
and then takes a unnamed parameter called movie
?
Wait so hold on, it doesn't give any names to the method and the parameter itself?SomeMethod(void (Movie movie) => new string('*', (int)movie.Rating))
is also validooooooooh
Hold on, how is this any different to expression bodies?
they're also called "anonymous functions"
From the code above, the author put down
they don't have a name
Isn't this the same thing?
oooooh
they can only be accessed as a delegate
Yeah that's what I'm confused about
What's the use with delegates? Like what is it's application?
they let you send a method as a parameter or store a method in a field
the most visible example is LINQ as an application of them
Can't we just write
rather then
Wouldn't that be the same thing?
where does it get movie from in the first example?
Why is an anonymous function needed to parse the argument?
its not passing an argument
oh....
so like, with LINQ
I think it might be getting the object movie from the same namespace
lets take FirstOrDefault
have you ever used LINQ before?
No, I have never used LINQ but I'm learning it right now
This is the course I'm currently following
Educative: Interactive Courses for Software Developers
Getting Started with LINQ in C# - Learn Interactively
LINQ is the best feature in C#. If you’re interested in writing more expressive code to work with collections, this course is for you. In this course, you will learn about what LINQ is and what lambda expressions are. You will learn the most common LINQ methods and some common pitfalls to avoid when using LINQ. You will also write your first met...
And it's introducing me to lambda expressions and delegates
this is what FirstOrDefault Looks like
it goes through the enumerable (an enumerable is anything you can use
foreach
on)
and if anything passes the logic you give itIs
FirstOrDefault
a LINQ method?it will give you that thing
yes
Enumerable.FirstOrDefault Method (System.Linq)
Returns the first element of a sequence, or a default value if no element is found.
hmmmmm... such weird syntaxes
Which part is weird?
Yeah I'm trying to understand the syntax. I've never seen generics defined that way before
public static T? FirstOrDefault<T>
Usually, I see generics defined as
public static FirstOrDefault<T>
But there's a T? nullable thingy in the middle?T
is the type T?
means it could return the type or nullbut you use it like this
that second thing you showed isnt valid
you didnt put a return type
T?
is the return type of the methodOOOOOOOOH
T? is a return type????
yes!
it returns whatever the generic is, but can possibly be null
Or null if applicable
Holy shit you're right! I'm confusing it with generic classes, I just realized this is my first time seeing a generic method
Note in a value type it won't be null

Yep, I'm starting to get the overall picture
So coming back to that LINQ method
yeah, you can use it like this
it will give you the first item in the array that returns true from
i == 4
It takes an
IEnumerable<T>
object and a Func<T, bool>
object which is a delegate that accepts the parameter T
(generic) and returns a boolean
am I understanding that correctly?yes
And this line here
if (func(thing))
. I'm guessing thing
is suppose to be T
the generic type right?yeah, sorry for the
var
Man this is confusing, C# just gets exponentially harder the more I learn
Okay, so to review again
In the context of the example code above, I must use
and not
Because
movie
is not defined right? There's no movie
object within that statement or the source code. But the lambda expression is able to interpret movie
as an identifier for a Movie
class?
Am I getting this right?the reason you must use it is because the method wants you to pass a delegate, because it wants to run whatever code you give it
(that method could actually be changed to just take a parameter and it would work fine)
Func<Movie, string> printRating
means pass a method that takes Movie
as a parameter, and returns a string
OOOOOOOOOH
Ok I'm starting to understand now
PrettyPrint
takes Func<Movie, string>
as it's second argument, that's why we are creating a lambda expression, a anonymous function to pass to PrettyPrint
I think I got it it now, damn that was pretty difficult
So everytime I think of delegates, I should think of lambda expression since they go hand in hand right?eh, they're related but not the exact same
lambda expressions are delegates
not all delegates come from a lambda
No, they are different, delegates aren't necessarily lambdas
for example
Windows10CE#8553
REPL Result: Success
Result: string
Compile: 609.198ms | Execution: 30.801ms | React with ❌ to remove this embed.
there is not lambda there
but it still uses delegates
delegates are methods stuffed into a variable
lambdas are methods with no name
Adding again to Aaron's amazing answers, lambdas can be closures, so they sometimes behave differently from normal methods
closures are weird, still good to know
closures are things like this:
Windows10CE#8553
REPL Result: Success
Result: string
Compile: 486.734ms | Execution: 47.877ms | React with ❌ to remove this embed.
they have the magic power of using things that are in variables
they can even change variables!
oops
Windows10CE#8553
REPL Result: Success
Console Output
Compile: 608.731ms | Execution: 79.437ms | React with ❌ to remove this embed.
how exactly they do that is a bit of compiler nonsense that isnt super important to understand right now
but its very very useful
Ty all for helping out 😄 I think I understand lambda expressions and delegates now, although am a bit slow on recognizing the syntax
✅ This post has been marked as answered!
Sorry to opening this up again, I just came across another Lambda expression and got confused again. For Lambda expressions, I can understand not having a name for anything, but we can omit the return type in a lambda expression? For example
Doesn't specify that the return type of is a string
Also just came across this weird syntax which I don't quite understand
.OrderBy(b => b.BlogId)
is that the same thing as saying .OrderBy((b) => b.BlogId)
?
So I'm guessing something like
?
But that makes zero sense because there's no class called "B" in the context of the code that I am readinall types related to lambas can be inferred by the compiler
in fact, being able to specify the types wasn't even a feature until very recently
oooo that's intersting
Also for the last question I think I figured it out

I was confused on that part, until I realized
b
had the same colour as other objectsthe
(movie) =>
is just to make the first parameter named movie
just like
✅ This post has been marked as answered!