Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

7 Answers

up vote 37 down vote accepted

There's no notion of "this class must have these functions" (that is, no interfaces per se), because:

  1. JavaScript inheritance is based on objects, not classes. It is not a big deal until you realize:
  2. JavaScript is an extremely dynamically typed language -- you can create an object with the proper methods, which would make it conform to the interface, and then undefine all the stuff that made it conform. It'd be so easy to subvert the type system that it wouldn't be worth it to try and make a type system in the first place.

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 some_dog.quack(). But if you're telling dogs to quack, you have slightly bigger problems.

You can test for the existence of a particular method before trying to call it, something like

if (typeof(someObject.quack) == "function")
{
    // This thing can quack
}

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:

Object.prototype.can = function(methodName)
{
     return ((typeof this[methodName]) == "function");
};

if (someObject.can("quack"))
{
    someObject.quack();
}

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 Object.prototype is a bad idea. If you care about being able to blindly use for...in loops, or are using (IMO broken) code that does, try a slightly different version:

function can(obj, methodName)
{
     return ((typeof obj[methodName]) == "function");
}

if (can(someObject, "quack"))
{
    someObject.quack();
}
share|improve this answer
4  
+1 duck type reference ;) – BGerrissen Sep 14 '10 at 16:02
10  
+1 for Duckable – Daniel Vandersluis Sep 14 '10 at 16:03
3  
Your can method is cross-browser compatible, but anyone who uses it needs to be aware that it will show up in for...in loops. For that reason, it's not generally a good idea to modify Object.prototype. – Matthew Crumley Sep 14 '10 at 18:36
1  
erik.eae.net/archives/2005/06/06/22.13.54 Object.prototype is verboten – BGerrissen Sep 14 '10 at 19:23
1  
It's not as horrible as it's made out to be. for...in is -- and has always been -- fraught with such dangers, and anyone who does it without at least considering that someone added to Object.prototype (a not uncommon technique, by that article's own admission) will see their code break in someone else's hands. – cHao Sep 14 '10 at 20:10
show 3 more comments

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.

// example duck typing method
var hasMethods = function(obj /*, method list as strings */){
    var i = 1, methodName;
    while((methodName = arguments[i++])){
        if(typeof obj[methodName] != 'function') {
            return false;
        }
    }
    return true;
}

// in your code
if(hasMethods(obj, 'quak', 'flapWings','waggle')) {
    //  IT'S A DUCK, do your duck thang
}
share|improve this answer
+1 Thanks for the book recomendation! – Tom Brito Sep 14 '10 at 16:42

Javascript (ECMAScript edition 3) has an implements reserved word saved up for future use, I think this is intended exactly for this purpose however, in a rush to get the spec out the door they didnt have time to define what to do with it so at present time browsers dont do anythings besides let it sit there and occasionally complain if you try to use it for something.

It is possible and indeed easy enough to create your own Object.implement(Interface) method with logic that baulks whenever a particular set of properties/functions are not implemented in a given object.

I wrote an article on object orientation where use my own notation as follows:

// Create a 'Dog' class that inherits from 'Animal'
// and implements the 'Mammal' interface
var Dog = Object.extend(Animal, {
     constructor: function(name) {
          Dog.superClass.call(this, name);
     },
     bark: function() {
          alert('woof');
     }
}).implement(Mammal);

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 Function.prototype which some people may have a problem with but I find it works beautifully.

Function.prototype.implement = function() {
    // Loop through each interface passed in and then check 
    // that its members are implemented in the context object (this)
    for(var i = 0; i < arguments.length; i++) {
       // .. check members logic ..
    }
    // Remember to return the class being tested
    return this;
}
share|improve this answer

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.

share|improve this answer
Actually, you don't need interfaces in Java, it's a fail safe to ensure objects have a certain API so you could swap them out for other implementations. – BGerrissen Sep 14 '10 at 15:51
1  
No, they're actually needed in Java so that it can build vtables for classes that implement an interface at compile time. Declaring that a class implements an interface instructs the compiler to build a little struct that contains pointers to all of the methods needed by that interface. Otherwise, it would have to dispatch by name at runtime (like dynamically-typed languages do). – munificent Sep 15 '10 at 0:49
I don't think that's correct. Dispatch is always dynamic in java (unless maybe a method is final), and the fact that the method belongs to an interface doesn't change the lookup rules. The reason interfaces are needed in statically-typed languages is so you can use the same 'pseudo-type' (the interface) to refer to unrelated classes. – entonio Jan 18 at 13:11
@entonio: Dispatch is not as dynamic as it looks. The actual method often isn't known til runtime, thanks to polymorphism, but the bytecode doesn't say "invoke yourMethod"; it says "invoke Superclass.yourMethod". The JVM can't invoke a method without knowing what class to look for it in. During linking, it might put yourMethod at entry #5 in the Superclass's vtable, and for each subclass that has its own yourMethod, simply points that subclass's entry #5 at the appropriate implementation. – cHao Apr 18 at 17:27
@entonio: For interfaces, rules do change a bit. (Not languagewise, but the generated bytecode and the JVM's lookup process are different.) A class named Implementation that implements SomeInterface doesn't just say it implements the whole interface. It has info that says "I implement SomeInterface.yourMethod" and points at the method definition for Implementation.yourMethod. When the JVM calls SomeInterface.yourMethod, it looks in the class for info about implementations of that interface's method, and finds it needs to call Implementation.yourMethod. – cHao Apr 18 at 18:01
show 2 more comments

There's also jQuery.isFunction(method), if you'd rather that than cHao's code.

share|improve this answer

bob.js supports some sort of interfaces.

1. Check if an object implements an interface:

var iFace = { say: function () { }, write: function () { } };  
var obj1 = { say: function() { }, write: function () { }, read: function () { } }; 
var obj2 = { say: function () { }, read: function () { } }; 
console.log('1: ' + bob.obj.canExtractInterface(obj1, iFace)); 
console.log('2: ' + bob.obj.canExtractInterface(obj2, iFace)); 
// Output: 
// 1: true 
// 2: false

2. Extract interface from an object:

var obj = {  
    msgCount: 0, 
    say: function (msg) { console.log(++this.msgCount + ': ' + msg); }, 
    sum: function (a, b) { console.log(a + b); } 
}; 
var iFace = { say: function () { } }; 
obj = bob.obj.extractInterface(obj, iFace); 
obj.say('Hello!'); 
obj.say('How is your day?'); 
obj.say('Good bye!'); 
// Output: 
// 1: Hello! 
// 2: How is your day? 
// 3: Good bye! 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.