I'm learning how to make OOP with JavaScript. Does it have the interface concept (such as Java's interface)?
So I would be able to create a listener...
|
I'm learning how to make OOP with JavaScript. Does it have the interface concept (such as Java's So I would be able to create a listener... |
||||
|
|
|
There's no notion of "this class must have these functions" (that is, no interfaces per se), because:
Instead, JavaScript uses what's called duck typing. (If it walks like a duck, and quacks like a duck, for all intents and purposes it's a duck.) If your object has quack(), walk(), and fly() methods, code can use it wherever it expects an object that can walk, quack, and fly, without requiring the implementation of some "Duckable" interface. The interface is exactly the set of functions that the code uses (and the return values from those functions), and with duck typing, you get that for free. Now, that's not to say your code won't fail halfway through -- it'll die when it tries and fails to call You can test for the existence of a particular method before trying to call it, something like
So you can check for all the methods you can use before you use them. The syntax is kind of ugly, though. There's a slightly prettier way:
I am not sure if that works in all browsers, but I haven't had a problem with it in Internet Explorer or Google Chrome, so it's almost definitely cross-browser friendly. It has the added benefit of reading like English. Apparently, though, to some people, modifying
|
|||||||||||||||||||||
|
|
Pick up a copy of 'JavaScript design patterns' by Dustin Diaz. There's a few chapters dedicated to implementing JavaScript interfaces through Duck Typing. It's a nice read as well. But no, there's no language native implementation of an interface, you have to Duck Type.
|
||||
|
|
|
Javascript (ECMAScript edition 3) has an It is possible and indeed easy enough to create your own I wrote an article on object orientation where use my own notation as follows:
There are many ways to skin this particular cat but this is the logic I used for my own Interface implementation, I find I prefer this approach and is easy to read and use (as you can see above). It does mean adding an 'implement' method to
|
|||
|
|
|
It can be done. View some of the articles: |
|||
|
|
|
You need interfaces in Java since it is statically typed and the contract between classes should be known during compilation. In JavaScript it is different. JavaScript is dynamically typed; it means that when you get the object you can just check if it has a specific method and call it. |
|||||||||||||
|
|
bob.js supports some sort of interfaces. 1. Check if an object implements an interface:
2. Extract interface from an object:
|
|||
|
|