I'd be interested in some before-and-after c# examples, some non-idiomatic vs idiomatic examples. Non-c# examples would be fine as well if they get the idea across. Thanks.
|
|
Idiomatic means following the conventions of the language. You want to find the easiest and most common ways of accomplishing a task rather than porting your knowledge from a different language. non-idiomatic python using a loop with append:
idiomatic python using a list comprehension:
|
|||
|
|
|
Some examples: Resource management, non idiomatic:
Idiomatic:
Iteration, non idiomatic:
Also non-idiomatic:
Idiomatic:
Filtering, non-idiomatic:
idiomatic:
|
||||
|
|
|
Idiomatic code is code that does a common task in the common way for your language. It's similar to a design pattern, but at a much smaller scale. Idioms differ widely by language. One idiom in C# might be to use an iterator to iterate through a collection rather than looping through it. Other languages without iterators might rely on the loop idiom. |
|||
|
|
|
In PHP I sometimes encounter code like:
Which idiomatically can be implemented with:
|
||||
|
|
|
Practically speaking, it means writing code in a consistent way, i.e. all developers who work on your code base should follow the same conventions when writing similar code constructs. So the idiomatic way is the way that matches the style of the other code, non-idiomatic way means you are writing the kind of function but in a different way. e.g. if you are looping a certain number of items, you could write the loop in several ways:
etc What is most important is that the chosen style is used consistently. That way people become very familiar and confident with how to use it, and when you spy a usage which looks different it can be a sign of a mistake being introduced, perhaps an off by one error, e.g.
|
|||
|
|
Eric Lippert blogs about 'Big Words' we sometimes encounter. He does not address this particular word but its a great place to place a suggestion on his posts.. |
||||
|