Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I define interfaces in Duck Typed languages?

I'm just about to write my first application in a duck typed language (Groovy).

If I was to write the same application in a static typed language then I would need to define some interfaces. Obviously because of the duck typing in Groovy they are not actually required. At the moment I am thinking that it might make sense to define them anyway as documentation of the methods that need to be implemented in the various objects. Am I missing the point?

like image 907
Martin Smith Avatar asked Feb 28 '10 12:02

Martin Smith


People also ask

Is duck typing the same as dynamic typing?

Duck Typing is a concept related to Dynamic Typing, where the type or the class of an object is less important than the method it defines. Using Duck Typing, we do not check types at all. Instead we check for the presence of a given method or attribute.

Is duck typing good?

With duck typing the type doesn't matter as long as it has the right method, so it really just eliminates a lot of the hassle of casting and conversions between types. There is plenty of anecdotal evidence suggesting that duck typing is significantly more productive than static typing.

Is duck typing structural?

Duck typing can be viewed as a usage-based structural equivalence between a given object and the requirements of a type.

Which languages use duck typing?

What languages support duck typing? Python and Ruby support duck typing, both of which are dynamic typed languages. In general, dynamic typed languages such as JavaScript and TypeScript support duck typing.


2 Answers

I've been reading on this recently here on SO (and I can't find the link right now, but it's one of those "why are dynamic languages good?" posts, and a big answer by S. Lott with many comments), and the answer is:

You could. In Groovy especially, you can define interfaces in Java or Groovy and implement them. However, with duck-typing (which Groovy allows but also allows explicit types) many people would say "why bother?" The source is it's own documentation, the interface is in the source, "use the source" etc.

Personally, this drives me mad -- I love the compile-time (or really, dev-time) checks Java gives me, but that's another debate. If you're using Groovy, it's because you want to write that brilliantly concise and clear code that comes from duck-typing. In that case, interfaces are to be avoided except where necessary.

Where are they necessary? Between parts of a program, and in the Public API for a program (though they can be abstract classes, too). Otherwise, I would say that you should try to avoid them in duck-typed languages. This forces you to write the docs on the classes, or write code that is so clear that it's the same thing.

I think this is terrible practice, HOWEVER this is part of the paradigm shift towards dynamic languages. And I think that if you avoid separating interface from implementation enough, you'll understand the 'why' behind it. I still do not, though it has a lot to do with not repeating code (keeping DRY).

Edit: Got some clarity away from the computer :) One of the main reasons NOT to separate interface from implementation is so that you move away from a dependence on types. In duck-typing, as you know, I don't care if it's an implementer of the Vehicle interface (for instance). I only care if it has a go method with 2 params. So the more you work with interfaces, the more you are writing Java in Groovy ("you can write Fortran in any language"). This should be avoided, as new languages open you up to new stuff.

like image 88
Dan Rosenstark Avatar answered Oct 13 '22 23:10

Dan Rosenstark


I'm not familiar with groovy, but in general, no, you don't need to define interfaces in loosely typed languages.

  1. You would be repeating yourself, if you need to change a methods signature, then you need to do it in two places, not one.

  2. Although interfaces do have some use as documentation, in a loosely typed language, most coders will not expect an interface, and therefore will not go searching for an interface if they need documentation.

  3. Most dynamic languages have good IDE's available for them, with method completion, which further diminishes the need for a separate interface.

  4. Methods can be bound and unbound in dynamic languages. Therefore, you can, and probably will, end up with objects that do not adhere to the interface. Having a separate interface could end up confusing people reading your code.

like image 41
longshot Avatar answered Oct 13 '22 23:10

longshot