Results 1 to 2 of 2

Thread: Inheritance Subtleties?

  1. #1
    Join Date
    May 2007
    Location
    USA
    Posts
    373
    Thanks
    2
    Thanked 4 Times in 4 Posts

    Default Inheritance Subtleties?

    As far as I can tell, the following do exactly the same thing:

    Code:
    function House(location, cost) {
    	this.location = location;
    	this.cost = cost;
    	}
    
    function Mansion(location, cost, size) {
    	this.parent = House;
    	this.parent(location, cost);
    	this.size = size;
    	}

    Code:
    function House(location, cost) {
    	this.location = location;
    	this.cost = cost;
    	}
    
    function Mansion(location, cost, size) {
    	House.call(this, location, cost);	//Or similarly with apply()
    	this.size = size;
    	}
    Are there any differences whatsoever? If so, which technique is better?

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Nope, no differences at all (other than the obvious, that the latter creates a parent property).
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •