{"id":731,"date":"2017-03-06T16:20:04","date_gmt":"2017-03-06T08:20:04","guid":{"rendered":"http:\/\/www.qdabc.cn\/?p=731"},"modified":"2017-03-06T16:13:54","modified_gmt":"2017-03-06T08:13:54","slug":"%e7%90%86%e8%a7%a3%e5%8e%9f%e5%9e%8b%e9%93%be%e7%bb%a7%e6%89%bf","status":"publish","type":"post","link":"http:\/\/www.qdabc.cn\/?p=731","title":{"rendered":"\u7406\u89e3\u539f\u578b\u94fe\u7ee7\u627f"},"content":{"rendered":"<p>\u57fa\u672c\u7ed3\u6784<\/p>\n<pre class=\"brush:html;toolbar:false\">function Suaa(){\r\n      \/\/Suaa\u6784\u9020\u51fd\u6570\u81ea\u5b9a\u4e49\u5c5e\u6027\r\n    this.pro1=true;       \r\n}\r\n\/\/\u7ed9Suaa\u6784\u9020\u51fd\u6570\u6dfb\u52a0\u539f\u578b\u5bf9\u8c61\u65b9\u6cd5   \r\nSuaa.prototype.get1=function(){\r\n  return this.pro1;\r\n};\r\n\r\nfunction Subb(){\r\n  \/\/Subb\u6784\u9020\u51fd\u6570\u81ea\u5b9a\u4e49\u5c5e\u6027\r\n  this.pro2=false;\r\n}\r\n\r\n\/\/Subb\u7ee7\u627fSuaa\r\nSubb.prototype=new Suaa();\r\n\r\n\/\/\u7ed9Subb\u6784\u9020\u51fd\u6570\u6dfb\u52a0\u539f\u578b\u5bf9\u8c61\u65b9\u6cd5\r\nSubb.prototype.get2=function(){\r\n  return this.pro2;\r\n}\r\n\/\/\u521b\u5efaSubb()\u7684\u5b9e\u4f8b\r\nvar ins=new Subb();\r\n\/\/\u56e0\u4e3a\u7ee7\u627f\u4e86Suaa\u6240\u4ee5\u62e5\u6709\u4e86Suaa\u7684\u6240\u6709\u5b9e\u4f8b\u5c5e\u6027\u4e0e\u65b9\u6cd5\uff0c\u540c\u65f6\u8fd8\u6709\u4e86\u6307\u5411Suaa\u539f\u578b\u5bf9\u8c61\u7684\u6307\u9488\uff0c\u6240\u4ee5\u4e5f\u5c31\u6709\u4e86Suaa\u7684\u539f\u578b\u5bf9\u8c61get1()\u65b9\u6cd5\r\n\/\/\u5176\u4e2d\u641c\u7d22\u8fc7\u7a0b\u4e3a\u5148\u641c\u7d22\u5b9e\u4f8b\uff0c\u7136\u540e\u641c\u7d22Subb\u7684\u539f\u578b\uff0c\u6700\u540e\u641c\u7d22\u6240\u7ee7\u627f\u7684Suaa\u539f\u578b\r\nalert(ins.get1()); \/\/true<\/pre>\n<p>\u7ec4\u5408\u7ee7\u627f<\/p>\n<pre class=\"brush:html;toolbar:false\">\/\/\u7ec4\u5408\u7ee7\u627f\r\nfunction Suaa(name){\r\n  this.name=name;\r\n  this.colors=[\"red\",\"blue\",\"green\"];\r\n}\r\nSuaa.prototype.sayName=function(){\r\n  alert(this.name);\r\n}\r\nfunction Subb(name,age){\r\n  \/\/\u7ee7\u627f\u4e86suaa\u7684\u5c5e\u6027\u5e76\u4f20\u9012\u4e86name\u53c2\u6570\r\n  Suaa.call(this,name);\r\n  this.age=age;\r\n}\r\n\/\/\u7ee7\u627f\u65b9\u6cd5\r\nSubb.prototype=new Suaa();\r\nSubb.prototype.constructor=Subb;\r\nSubb.prototype.sayAge=function(){\r\n  alert(this.age);\r\n}\r\n\r\nvar ins1=new Subb(\"nike\",29);\r\nins1.colors.push(\"black\");\r\nalert(ins1.colors);\/\/red\",\"blue\",\"green,black\r\nins1.sayName();\/\/nike\r\nins1.sayAge();\/\/29\r\n\r\nvar ins2=new Subb(\"luce\",25);\r\nalert(ins2.colors);\/\/red\",\"blue\",\"green\r\nins2.sayName();\/\/luce\r\nins2.sayAge();\/\/25<\/pre>\n<p>\u5bc4\u751f\u7ec4\u5408\u5f0f\u7ee7\u627f<\/p>\n<pre class=\"brush:html;toolbar:false\">function inheritPrototype(subType,superType){\r\n  \/\/\u521b\u5efa\u8d85\u7c7b\u578b\u7684\u539f\u578b\u5bf9\u8c61\u526f\u672c\r\n  var prototype=object(superType.prototype);\r\n  \/\/\u628a\u539f\u578b\u526f\u672c\u6307\u5411\u5b50\u51fd\u6570\r\n  prototype.constructor=subType;\r\n  \/\/\u628a\u521b\u5efa\u7684\u539f\u578b\u526f\u672c\u8d4b\u7ed9\u5b50\u51fd\u6570\u7684\u539f\u578b\u5bf9\u8c61\r\n  subType.prototype=prototype;\r\n}\r\n\r\nfunction SuperType(name){\r\n  this.name=name;\r\n  this.colors=[\"red\",\"blue\",\"green\"];\r\n}\r\nSuperType.prototype.sayName=function(){\r\n  alert(this.name);\r\n}\r\nfunction SubType(name,age){\r\n  SuperType.call(this,name);\r\n  this.age=age;\r\n}\r\n\r\ninheritPrototype(SubType,SuperType);\r\nSubType.prototype.sayAge=function(){\r\n  alert(this.age);\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p class=\"post-copyright\">\u6b22\u8fce\u5206\u4eab\u672c\u6587\uff0c\u8f6c\u8f7d\u8bf7\u4fdd\u7559\u51fa\u5904\uff1a<a href=\"http:\/\/www.qdabc.cn\">\u524d\u7aefABC<\/a> &raquo; <a href=\"http:\/\/www.qdabc.cn\/?p=731\">\u7406\u89e3\u539f\u578b\u94fe\u7ee7\u627f<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>\u57fa\u672c\u7ed3\u6784 function Suaa(){ \/\/Suaa\u6784\u9020\u51fd\u6570\u81ea\u5b9a\u4e49\u5c5e\u6027 this.pro1=true; } \/\/\u7ed9Suaa\u6784\u9020\u51fd\u6570\u6dfb\u52a0\u539f\u578b\u5bf9\u8c61\u65b9\u6cd5 Suaa.prototype.get1=func [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":324,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[174,81],"_links":{"self":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/731"}],"collection":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=731"}],"version-history":[{"count":1,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/731\/revisions"}],"predecessor-version":[{"id":732,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/731\/revisions\/732"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/media\/324"}],"wp:attachment":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=731"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}