I am very new to predicate.
just learned how to write a predicate like
Predicate<int> pre = delegate(int a){ a %2 == 0 };
what will the predicate return ?
and how is it useful when programing ?
|
|
For example suppose I have a class:
Now let's say I have a Without using a
This is fine, but then let's say I want to check if there's a person named "Ruth"? Or a person whose age is 17? Using a
Notice I said a lot less code, not a lot faster. A common misconception developers have is that if something takes one line, it must perform better than something that takes ten lines. But behind the scenes, the So let's take a look at the specific code in your question:
Here we have a
And so on. This also means, if you have a
Of course, as with any other type that you can use in code, it's a good idea to give your variables descriptive names; so I would advise changing the above
|
|||||||||||||
|
|
The Predicate will always return a boolean, by definition.
Predicates are very useful in programming. They are often used to allow you to provide logic at runtime, that can be as simple or as complicated as necessary. For example, WPF uses a |
|||||||||||||
|
|
In C# Predicates are simply delegates that return booleans. They're useful (in my experience) when you're searching through a collection of objects and want something specific. I've recently run into them in using 3rd party web controls (like treeviews) so when I need to find a node within a tree, I use the .Find() method and pass a predicate that will return the specific node I'm looking for. In your example, if 'a' mod 2 is 0, the delegate will return true. Granted, when I'm looking for a node in a treeview, I compare it's name, text and value properties for a match. When the delegate finds a match, it returns the specific node I was looking for. |
|||
|
|