Are these two essentially the same thing? They look very similar to me.
Did lambda expression borrow its idea from Ruby?
|
|
Ruby actually has 4 constructs that are all extremely similar The BlockThe idea behind blocks is sort of a way to implement really light weight strategy patterns. A block will define a coroutine on the function, which the function can delegate control to with the yield keyword. We use blocks for just about everything in ruby, including pretty much all the looping constructs or anywhere you would use
ProcA proc is basically taking a block and passing it around as a parameter. One extremely interesting use of this is that you can pass a proc in as a replacement for a block in another method. Ruby has a special character for proc coercion which is &, and a special rule that if the last param in a method signature starts with an &, it will be a proc representation of the block for the method call. Finally, there is a builtin method called
To go a little deeper with this, there is a really neat trick that rails added to Symbol (and got merged into core ruby in 1.9). Basically, that & coercion does its magic by calling
More advanced stuff, but imo that really illustrates the sort of magic you can do with procs LambdasThe purpose of a lambda is pretty much the same in ruby as it is in c#, a way to create an inline function to either pass around, or use internally. Like blocks and procs, lambdas are closures, but unlike the first two it enforces arity, and return from a lambda exits the lambda, not the containing scope. You create one by passing a block to the lambda method, or to -> in ruby 1.9
MethodsOnly serious ruby geeks really understand this one :) A method is a way to turn an existing function into something you can put in a variable. You get a method by calling the
What is happening here is that you are creating a method for puts, coercing it into a proc, passing that in as a replacement for a block for the lambda method, which in turn returns you the lambda Feel free to ask about anything that isn't clear (writing this really late on a weeknight without an irb, hopefully it isn't pure gibberish) EDIT: To address questions in the comments
Gonna go kind of deep here, but to really understand how it works you need to understand how ruby method calls work. Basically, ruby doesn't have a concept of invoking a method, what happens is that objects pass messages to each other. The The other thing to know is the rather esoteric "splat" operator,
In a method call, if it is the last parameter, splat will make that parameter glob up all additional parameters passed in to the function (sort of like
When in a method call (or anything else that takes argument lists), it will turn an array into a bare argument list. The snippet below is equivilent to the snippet above.
Now, with
So,
Yes, they do. An & will call
This should be addressed earlier, unfortunately you can't do it with this trick.
That example was exceptionally contrived, I just wanted to show equivalent code to the example before it, where I was passing a proc to the
Like I said in the post, I didn't have an irb available when I was writing the answer, and you are right, I goofed that (spend the vast majority of my time in 1.8.7, so I am not used to the new syntax yet) There is no space between the stabby bit and the parens. Try |
|||||||||||||
|
C# vs. Ruby
They are very different. First off, lambdas in C# do two very different things, only one of which has an equivalent in Ruby. (And that equivalent is, surprise, lambdas, not blocks.) In C#, lambda expression literals are overloaded. (Interestingly, they are the only overloaded literals, as far as I know.) And they are overloaded on their result type. (Again, they are the only thing in C# that can be overloaded on its result type, methods can only be overloaded on their argument types.) C# lambda expression literals can either be an anonymous piece of executable code or an abstract representation of an anonymous piece of executable code, depending on whether their result type is Ruby doesn't have any equivalent for the latter functionality (well, there are interpreter-specific non-portable non-standardized extensions). And the equivalent for the former functionality is a lambda, not a block. The Ruby syntax for a lambda is very similar to C#:
In C#, you can drop the
You can leave off the parentheses if you have only one parameter:
In Ruby, you can leave off the parameter list if it is empty:
An alternative to using the literal lambda syntax in Ruby is to pass a block argument to the
The main difference between those two is that you don't know what In Ruby 1.8, you can also use Another difference between Ruby and C# is the syntax for calling a lambda:
I.e. in C#, you use the same syntax for calling a lambda that you would use for calling anything else, whereas in Ruby, the syntax for calling a method is different from the syntax for calling any other kind of callable object. Another difference is that in C#, procs vs. lambdasSo, what are lambdas exactly? Well, they are instances of the In particular, not all Non-lambda procs are created by passing a block to What's the difference? Basically, lambdas behave more like methods, procs behave more like blocks. If you have followed some of the discussions on the Project Lambda for Java 8 mailinglists, you might have encountered the problem that it is not at all clear how non-local control-flow should behave with lambdas. In particular, there are three possible sensible behaviors for
That last one is a bit iffy, since in general the method will have already returned, but the other two both make perfect sense, and neither is more right or more obvious than the other. The current state of Project Lambda for Java 8 is that they use two different keywords (
They also differ in how they handle argument binding. Again, lambdas behave more like methods and procs behave more like blocks:
Blocks: lightweight procsA block is essentially a lightweight proc. Every method in Ruby has exactly one block parameter, which does not actually appear in its parameter list (more on that later), i.e. is implicit. This means that on every method call you can pass a block argument, whether the method expects it or not. Since the block doesn't appear in the parameter list, there is no name you can use to refer to it. So, how do you use it? Well, the only two things you can do (not really, but more on that later) is call it implicitly via the Most Ruby implementations implement blocks in a very lightweight manner. In particular, they don't actually implement them as objects. However, since they have no name, you cannot refer to them, so it's actually impossible to tell whether they are objects or not. You can just think of them as procs, which makes it easier since there is one less different concept to keep in mind. Just treat the fact that they aren't actually implemented as blocks as a compiler optimization.
|
@Matt Briggs: I actually tried to keep our answers mostly orthogonal and complementary. For example, for every construct, you explain how it is used, and I deliberately left that out. There's some duplication around &, to_proc and Symbol#to_proc and a couple of other places, but mostly the two answers stand well on their own. – Jörg W Mittag Dec 2 '10 at 14:49 |
|
Thank you Thank you very much for giving me such a in-depth perspective!!!! It answered several questions I had after reading Matt's post. – Shuo Dec 3 '10 at 4:02 |
|
" * procs return from the calling method (just like blocks)
* lambdas return from the lambda (just like methods) " Now I finally understand the difference between those two. :) – Shuo Dec 3 '10 at 4:06 |
|
Not exactly. But they're very similar. The most obvious difference is that in C# a lambda expression can go anywhere where you might have a value that happens to be a function; in Ruby you only have one code block per method call. They both borrowed the idea from Lisp (a programming language dating back to the late 1950s) which in turn borrowed the lambda concept from Church's Lambda Calculus, invented in the 1930s. |
|||||||||||||||||
|