• <bdo id='4rqzf'></bdo><ul id='4rqzf'></ul>
  • <i id='4rqzf'><tr id='4rqzf'><dt id='4rqzf'><q id='4rqzf'><span id='4rqzf'><b id='4rqzf'><form id='4rqzf'><ins id='4rqzf'></ins><ul id='4rqzf'></ul><sub id='4rqzf'></sub></form><legend id='4rqzf'></legend><bdo id='4rqzf'><pre id='4rqzf'><center id='4rqzf'></center></pre></bdo></b><th id='4rqzf'></th></span></q></dt></tr></i><div id='4rqzf'><tfoot id='4rqzf'></tfoot><dl id='4rqzf'><fieldset id='4rqzf'></fieldset></dl></div>

      1. <small id='4rqzf'></small><noframes id='4rqzf'>

      2. <legend id='4rqzf'><style id='4rqzf'><dir id='4rqzf'><q id='4rqzf'></q></dir></style></legend>
      3. <tfoot id='4rqzf'></tfoot>

        JS 构造函数中的返回语句

        Return Statement in JS Constructors(JS 构造函数中的返回语句)

        <i id='8Qd7m'><tr id='8Qd7m'><dt id='8Qd7m'><q id='8Qd7m'><span id='8Qd7m'><b id='8Qd7m'><form id='8Qd7m'><ins id='8Qd7m'></ins><ul id='8Qd7m'></ul><sub id='8Qd7m'></sub></form><legend id='8Qd7m'></legend><bdo id='8Qd7m'><pre id='8Qd7m'><center id='8Qd7m'></center></pre></bdo></b><th id='8Qd7m'></th></span></q></dt></tr></i><div id='8Qd7m'><tfoot id='8Qd7m'></tfoot><dl id='8Qd7m'><fieldset id='8Qd7m'></fieldset></dl></div>
          <bdo id='8Qd7m'></bdo><ul id='8Qd7m'></ul>
            • <legend id='8Qd7m'><style id='8Qd7m'><dir id='8Qd7m'><q id='8Qd7m'></q></dir></style></legend><tfoot id='8Qd7m'></tfoot>

                    <tbody id='8Qd7m'></tbody>

                  <small id='8Qd7m'></small><noframes id='8Qd7m'>

                  本文介绍了JS 构造函数中的返回语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当 JavaScript 函数体中的 return 语句用作新对象的构造函数时(带有 'new' 关键字)有什么作用?

                  What is the effect of a return statement in the body of JavaScript function when it's used as a constructor for a new object(with 'new' keyword)?

                  推荐答案

                  通常return简单的退出构造函数.但是,如果返回的值是一个 Object,则它被用作 new 表达式的值.

                  Usually return simply exits the constructor. However, if the returned value is an Object, it is used as the new expression's value.

                  考虑:

                  function f() {
                     this.x = 1;
                     return;
                  }
                  alert((new f()).x);
                  

                  显示 1,但是

                  function f() {
                     this.x = 1;
                     return { x: 2};
                  }
                  alert((new f()).x);
                  

                  显示 2.

                  这篇关于JS 构造函数中的返回语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Pause youtube video, youtube api(暂停 youtube 视频,youtube api)
                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How can I stop a video with Javascript in Youtube?(如何在 Youtube 中停止使用 Javascript 的视频?)
                  How to call Greasemonkey#39;s GM_ functions from code that must run in the target page scope?(如何从必须在目标页面范围内运行的代码中调用 Greasemonkey 的 GM_ 函数?)
                  How do you mute an embedded Youtube player?(如何使嵌入式 Youtube 播放器静音?)
                  How to get number of video views with YouTube API?(如何使用 YouTube API 获取视频观看次数?)

                1. <i id='l1wFs'><tr id='l1wFs'><dt id='l1wFs'><q id='l1wFs'><span id='l1wFs'><b id='l1wFs'><form id='l1wFs'><ins id='l1wFs'></ins><ul id='l1wFs'></ul><sub id='l1wFs'></sub></form><legend id='l1wFs'></legend><bdo id='l1wFs'><pre id='l1wFs'><center id='l1wFs'></center></pre></bdo></b><th id='l1wFs'></th></span></q></dt></tr></i><div id='l1wFs'><tfoot id='l1wFs'></tfoot><dl id='l1wFs'><fieldset id='l1wFs'></fieldset></dl></div>
                2. <tfoot id='l1wFs'></tfoot>

                    <tbody id='l1wFs'></tbody>

                    <legend id='l1wFs'><style id='l1wFs'><dir id='l1wFs'><q id='l1wFs'></q></dir></style></legend>
                        <bdo id='l1wFs'></bdo><ul id='l1wFs'></ul>

                        <small id='l1wFs'></small><noframes id='l1wFs'>