java cunstructor_参加JavaScript面试,必须搞懂的问题(推荐)

一. JavaScript中的对象.

JavaScript中的Object是一组数据的key-value的集合, 有点类似于Java中的HashMap, 所有这些数据都

是Object里的property. 通常情况下, JavaScript中建立一个对象用"new"加上constructor function来

实现. 如new Date(), new Object()等.

var book = new Object();

book.name = "JavaScript is Cool";

book.author = "tom";

book.pages = 514;

上面例子中的name和page就是名为book的对象中的property. 我们可以用delete来删除Object中的

property: "delete book.name;". 除了Object, Date等buildin的对象外, 我们可以写自己的

constructor function, 然后使用new就可以建立自己的对象. 如上面的book可以写成:

function Book (name, author, page) {

this.name = name;

this.author = author;

this.page = page;

}

var abook = new Book("JavaScript is Cool", "tom", 514);

二. function的用法

在JavaScript中, function是一种数据类型, 所有的function都是从buildin的Function object 衍生的

对象. 所以在JavaScript 中function可以作为参数传递, 可以作为Object的property, 也可以当作函数

返回值. function在JavaScript中有两种用法, 一种是当作constructor, 前面加上new keyword用来建

立对象. 一种是当作method, 为其他对象调用.

注意function和method在中文里的意思相当, 在有些语言里也可以通用. 但是在JavaScript中, 它们还

是有所区别的. function本身是是一个对象, 而当作为一个方法他属于一个对象时, 就成为了一个这个

对象的method, 相当于一个对象种的属性. 也就是说method是相对于一个对象而言的, function在某些

情况下成为了一个对象的method.

function Book(name, author, page) {

this.name = name;

this.author = author;

this.page = page;

this.getReader = Book_getReader;

}

function Book_getReader() {

//....

}

上面的例子种, function Book_getReader()就成为了Book的一个名为getReader的method. call()和

apply()是Function object 的两个方法, 它们也可以使一个function作为另一个对象的method来调用用

. call()和apply()都需要参数, 而第一个参数就是调用对象, 也就是当function内部出现this时, this

所指的对象. call()和apply()的区别在于call()可以传递任意长度参数, 只要第一个参数时调用对象.

而apply只接受两个参数, 需要将除调用对象外的所有参数放入一个数组中. 即:

function getBooksWithSameAuthor(form, to) {

var name = this.author;

var books = ...

//get books written by name and from year "from" to year "to"

return books;

}

var abook = new Book("JavaScript is Cool", "tom", 514);

var books = getBooksWithSameAuthor.call(abook, 1990, 2005);

var books = getBooksWithSameAuthor.apply(abook, [1990, 2005]);

当一个function不作为一个对象的method时, JavaScript会认为它是属于一个Globle Object对象的

method, 这个Globle Object在Browser中就是window类. 所以从这个角度来说, function和method又可

以统一起来了.

Function object 还有一个非常重要的property: prototype. 它是一个predefined的prototype

object. 当一个Function用作对象的constructor时, protptype property将发挥作用,中文翻译叫原型.

JavaScript的新对象就是通过function的原型来建立的. 同时我们还可以利用prototype来动态的向对象

中添加属性, 如:

function Book (name, author, page) {

this.name = name;

this.author = author;

this.page = page;

}

var abook = new Book("JavaScript is Cool", "tom", 514);

Book.prototype.getInfo = getInfo;

function getInfo() {

return this.name + " written by " + this.author + " with " + this.page + " pages";

}

alert(abook.getInfo());

这里有一个例子, 用prototype方法来实现callback:

Function.prototype.andThen=function(g) {

var f=this;

return function() {

f();g();

}

};

function Manager() {

this.callback=function () {}; // do nothing

this.registerCallback=function(callbackFunction) {

this.callback=(this.callback).andThen(callbackFunction);

}

}

var manager=new Manager();

manager.registerCallback(sayHi);

manager.registerCallback(sayBye);

manager.callback();

三. JavaScript中的OO

JavaScript中的对象是一个属性和方法的集合. JavaScript也有对应于Java的Class和Instance的概念.

我们可以把JavaScript中定义的

function(Function类的子类)看作是Class, 而利用这个function构造的对象看是Instance. 对应于Java

的Instance Property, Instance

Method, Class(static) property, Class Method, JavaScript都可以实现.

1. Instance Property

Instance Property就是cuntructor function中定义的property, 对于每一个instance都会有一份copy.

2. Class property

Class Property其实是cunstructor function作为对象本身所具有的属性(和Java不一样, Java中method

不是数据, 更不是对象).

3. Instance Method

Instance Method是指属于某一对象的method, 方法内的this代表这个method从属的对象, 注意虽然是

Instance Method, 并不是每一个Instance都有一个此方法的copy, 所有Instance 共享一个method.

4. Class Method

Class Method同样可以理解为constructor function作为对象自己具有的方法, 和由这个constructor建

立的对象没有直接联系. 所以Class Method方法里使用this会产生混淆. 因为这个this指的不是期望操

作的对象, 而是一个Function Object(constructor).

下面的例子定义了一个复数的对象, 包含有上述四种域, 值得仔细看看:

/*

* Complex.js:

* This file defines a Complex class to represent complex numbers.

* Recall that a complex number is the sum of a real number and an

* imaginary number and that the imaginary number i is the

* square root of -1.

*/

/*

* The first step in defining a class is defining the constructor

* function of the class. This constructor should initialize any

* instance properties of the object. These are the essential

* "state variables" that make each instance of the class different.

*/

function Complex(real, imaginary) {

this.x = real;       // The real part of the number

this.y = imaginary; // The imaginary part of the number

}

/*

* The second step in defining a class is defining its instance

* methods (and possibly other properties) in the prototype object

* of the constructor. Any properties defined in this object will

* be inherited by all instances of the class. Note that instance

* methods operate implicitly on the this keyword. For many methods,

* no other arguments are needed.

*/

// Return the magnitude of a complex number. This is defined

// as its distance from the origin (0,0) of the complex plane.

Complex.prototype.magnitude = function( ) {

return Math.sqrt(this.x*this.x + this.y*this.y);

};

// Return a complex number that is the negative of this one.

Complex.prototype.negative = function( ) {

return new Complex(-this.x, -this.y);

};

// Convert a Complex object to a string in a useful way.

// This is invoked when a Complex object is used as a string.

Complex.prototype.toString = function( ) {

return "{" + this.x + "," + this.y + "}";

};

// Return the real portion of a complex number. This function

// is invoked when a Complex object is treated as a primitive value.

Complex.prototype.valueOf = function( ) { return this.x; }

/*

* The third step in defining a class is to define class methods,

* constants, and any needed class properties as properties of the

* constructor function itself (instead of as properties of the

* prototype object of the constructor). Note that class methods

* do not use the this keyword: they operate only on their arguments.

*/

// Add two complex numbers and return the result.

Complex.add = function (a, b) {

return new Complex(a.x + b.x, a.y + b.y);

};

// Subtract one complex number from another.

Complex.subtract = function (a, b) {

return new Complex(a.x - b.x, a.y - b.y);

};

// Multiply two complex numbers and return the product.

Complex.multiply = function(a, b) {

return new Complex(a.x * b.x - a.y * b.y,

a.x * b.y + a.y * b.x);

};

// Here are some useful predefined complex numbers.

// They are defined as class properties, where they can be used as

// "constants." (Note, though, that they are not actually read-only.)

Complex.zero = new Complex(0,0);

Complex.one = new Complex(1,0);

Complex.i = new Complex(0,1);

四. 对象的继承

JavaScript有多种方式模拟继承.

1. 利用function:

function superClass() {

this.bye = superBye;

this.hello = superHello;

}

function subClass() {

this.inheritFrom = superClass;

this.inheritFrom();

this.bye = subBye;

}

或者:

function subClass() {

superClass.call(this);

}

先定义subClass的inheritFrom方法, 再调用这个方法(方法名称并不重要), 或者直接使用Function

Object 的call 方法将this做参数, 都可以模拟实现从superClass的继承. 注意调用superClass时的

this指向. 这个方法就是在执行subClass的cunstructor function时, 先执行supperClass的

cunstructor function.这个方法的缺点在于子类仅仅是在自己的构造函数中, 将this作为参数调用了父

类的构造函数, 将构造函数赋予父类的所有域赋予子类. 所以, 任何父类在构造函数之外(通过

prototype)定义的域, 子类都无法继承. 而且子类的构造函数一定要在定义自己的域之前调用父类的构

造函数, 免得子类的定义被父类覆盖. 使用这种方法子类也尽量不要使用prototype来定义子类的域, 因

为prototype的定义在子类new的之后就执行, 所以它一定会在调用父类构造函数前, 同样会有被父类的

定义覆盖的危险.

2. 利用prototype:

function superClass() {

this.bye = superBye;

this.hello = superHello;

}

function subClass() {

this.bye = subBye;

}

subClass.prototype = new superClass();

subClass.prototype.constructor = superClass;

这里将一个superClass的实例设置成subclass的原型:protytype, 由于new superClass实例一定会调用

父类prototype定义的所有域, 所以这种方法避免了上一种方法的一个问题, 父类可以通过prototype来

描述域. 可以实现从superClass的继承. 而这个方法也有缺点, 由于子类的peototype已经是父类的实例

(Object实例), 不能再被实例化, 所以new子类实例的时候, 父类的所有非基本数据类型(见JavaScript

数据类型)都将是reference copy而非数据copy. 简单说就是所有的父类域在子类中虽然存在, 但看起来

就像Java中的static域一样在子类间share.被一个子类改变, 所有子类都会改变.

注意这里的最后一句, 改变了子类prototype中的constructor属性. 它对子类使用没有影响, 仅仅是为

了在调用instanceOf方法时它使得子类实例返回subClass.

3. Parasitic Inheritance (寄生继承)

function superClass() {

this.bye = superBye;

this.hello = superHello;

}

function subClass() {

this.base = new supperClass();

base.sayBye = subBye;

return base;

}

这种继承其实是一种扩展, 因为在调用instanceOf时, 子类会返回父类名称, 它的好处在于在构造函数

继承的基础上解放了父类, 父类可以使用prototype定义自己的域, 但是子类仍然不建议使用prototype,

以免被父类覆盖. 为了可以使子类的instanceof返回正确类型, 我们可以再改进一下:

function subClass() {

this.base = new supperClass();

for ( var key in this.base ) {

if ( !this[key] ) {

this[key] = this.base[key];

}

}

this.sayBye = subBye;

}

将所有的父类域拷贝给子类一份, 不再返回父类, instanceof子类实例时就可以返回正确类型.

五. this的用法

通常情况下, this代表的是前面提到的Globle Object.也就是Browser环境时的window Object. 当

function作为某一对象的 method 时, this 代表这个 function 所属的 object. 下面这段代码有格错

误, 涉及到this的使用:

function Employee(a) {

this.name = a;

}

function init(){

John = Employee("Johnson");

alert(John.name);

}

在init()中我们少了一个new keyword. 于是这个代码就会报错, 因为Browser把Employee当作是window

obect的一个method, 里面的this指的就是window object. init()应该改为:

function init(){

John = new Employee("Johnson");

alert(John.name);

}

同时我们也可以将Employee的constructor函数修改, 防止类似的错误:

function Employee(a) {

if (!(this instanceof Employee)) return new Employee(a);

this.name = a;

}

这样,我们即使使用原来的init()方法, 也不会报错了.

六. Array in JavaScript

Array和Object本质上是一样的, 只是Array需要由index来索引它其中的属性. index为>=0的整数.

Array有一系列buildin的方法:

1. jion() 将array中的所有element以string的形式连在一起:

var a = [1,2,3];

s = a.join();      // s == "1,2,3"

s = a.join(": "); // s == "1: 2: 3"

2. reverse() 将Array的element顺数颠倒

var a = [1,2,3];

a.reverse();

s = a.join(); // s == "3,2,1"

3. sort() 排序, 默认按字母顺序排序case sensitive, 可以自定义排序方式.

var a = [111,4,33,2];

a.sort(); // a == [111,2,33,4]

a.sort(function(a,b) { // a == [2,4,33,111]

return a-b;       // Returns < 0, 0, or > 0

});

4. concat()连接多个Array

var a = [1,2,3];

a.concat(4,5);          // return [1,2,3,4,5]

a.concat([4,5]);        // return [1,2,3,4,5]

a.concat([4,5], [6,7]) // return [1,2,3,4,5,6,7]

a.concat(4,[5,[6,7]]); // return [1,2,3,4,5,6,7]

5. slice() 返回Array的切片, 原Array不变.

var a = [1,2,3,4,5];

a.slice(0,3);    // Returns [1,2,3]

a.slice(3);      // Returns [4,5]

a.slice(1,-1);   // Returns [2,3,4], -1 means the last index of the array

a.slice(-3,-2); // Returns [3], from the third last index to the second last index

6. splice 向一个Array中添加或删除element. 第一个参数表示位置, 第二个参数表示删除长度, 后面

任意长的参数表示在1删除位置添加的elements.

var a = [1,2,3,4,5,6,7,8];

a.splice(4);    // Returns [5,6,7,8]; a is [1,2,3,4]

a.splice(1,2); // Returns [2,3]; a is [1,4]

a.splice(1,1); // Returns [4]; a is [1]

var a = [1,2,3,4,5];

a.splice(2,0,'a','b'); // Returns []; a is [1,2,'a','b',3,4,5]

a.splice(2,2,[1,2],3); // Returns ['a','b']; a is [1,2,[1,2],3,3,4,5]

7. push() and pop() 向Array末尾添加或删除element 8. unshift() and shift() 向Array的开头添加或删除eleme

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/354091.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jms activemq_带有ActiveMQ的JMS

jms activemq带有ActiveMQ的JMS JMS是Java消息服务的缩写&#xff0c;它提供了一种以松散耦合&#xff0c;灵活的方式集成应用程序的机制。 JMS以存储和转发的方式跨应用程序异步传递数据。 应用程序通过充当中介的MOM&#xff08;面向消息的中间件&#xff09;进行通信&#x…

【EMV L2】SDA静态数据认证处理流程

【静态数据认证】 静态数据认证处理过程中&#xff0c;卡片没有执行任何处理&#xff0c;终端执行的处理流程&#xff1a;1、认证中心公钥的获取终端使用卡片上的认证中心公钥索引&#xff08;PKI&#xff09;【TAG&#xff1a;8F&#xff0c;Certification Authority Public K…

java取邮箱前缀_java抓取网页或文件中的邮箱号码

java抓取网页或文件中的邮箱号码发布时间&#xff1a;2020-10-18 08:58:32来源&#xff1a;脚本之家阅读&#xff1a;69作者&#xff1a;java大渣渣本文实例为大家分享了java抓取邮箱号码的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下java抓取文件中邮箱号码的具体…

为Twitter4j创建自定义SpringBoot Starter

SpringBoot提供了许多启动器模块来快速启动和运行。 SpringBoot的自动配置机制负责根据各种标准代表我们配置SpringBean。 除了Core Spring Team提供的现成的springboot启动器之外&#xff0c;我们还可以创建自己的启动器模块。 在本文中&#xff0c;我们将研究如何创建自定义…

mac php gd库,mac下安装GD库FreeType

MacBook Pro安装的新系统10.10.3&#xff0c;PHP环境也是默认就有的&#xff0c;GD库在默认情况下也安装过了&#xff0c;但在使用验证码的时候&#xff0c;提示GD库不支持FreeType&#xff0c;这里我们手动安装一下。法一&#xff1a;安装 FreeType前往苹果官方开源支持&#…

php异步查询数据库,php中mysql数据库异步查询实现

问题通常一个web应用的性能瓶颈在数据库。因为&#xff0c;通常情况下php中mysql查询是串行的。也就是说&#xff0c;如果指定两条sql语句时&#xff0c;第二条sql语句会等到第一条sql语句执行完毕再去执行。这个时候&#xff0c;如果执行2条sql语句&#xff0c;每条执行时间为…

java btrace_BTrace:Java开发人员工具箱中的隐藏宝石

java btrace这篇文章是关于BTrace的 &#xff0c;我正在考虑将其作为Java开发人员的隐藏宝藏。 BTrace是用于Java平台的安全&#xff0c;动态跟踪工具。 BTrace可用于动态跟踪正在运行的Java程序&#xff08;类似于DTrace&#xff0c;适用于OpenSolaris应用程序和OS&#xff09…

共享文件夹不能访问的问题解决

打开控制面板--管理工具--服务--webclinet&#xff0c;设为自动&#xff0c;启动。重启电脑&#xff0c;搞定&#xff01;转载于:https://www.cnblogs.com/atlj/p/8481257.html

xampp浏览php出现乱码,dvwa+xampp搭建显示乱码的问题及解决方案

如图&#xff0c;dvwa显示乱码&#xff0c;解决办法有两个&#xff1a;1、方法一是&#xff0c;临时解决办法&#xff0c;也就是每次都得手动修改&#xff1a;利用浏览器的编码修改2、方法二是&#xff1a;永久方案&#xff0c;那就是修改dvwa的配置文件&#xff0c;修改默认编…

HotSpot的-XshowSettings标志的简单性和价值

一个方便的HotSpot JVM标志 &#xff08; 选项为Java启动 java &#xff09;是-XshowSettings选项。 Oracle Java启动器描述页面中对此选项进行了如下描述 &#xff1a; -XshowSettings &#xff1a; category显示设置并继续。 该选项的可能类别参数包括&#xff1a; all显示所…

Python验证码简单实现(数字和大写字母组成的4位验证码)

#数字和英文大写字母的4位随机数 def checkcode(): #def 定义方法 checkcode() 方法名()import random # 导入包checkcode ""string range(0,4)for i in string:current random.randrange(0,3) #randrange随机数 参数1<随机数<参数2if current ! i:temp …

php haystack,haystack(示例代码)

1、haystack简介Haystack是django的开源全文搜索框架(全文检索不同于特定字段的模糊查询&#xff0c;使用全文检索的效率更高 )&#xff0c;该框架支持Solr,Elasticsearch,Whoosh, Xapian&#xff0c;搜索引擎它是一个可插拔的后端(很像Django的数据库层)&#xff0c;所以几乎你…

猫眼电影面试经历

面试是昨天上午进行的&#xff0c;因为昨天家里断网了&#xff0c;所以未能及时记录。 昨天的面试进行到了第三面&#xff0c;由于第三面的面试官当天未上班&#xff0c;所以成了回家等通知了。 感觉总体面试过程回答了百分之七十的样子吧&#xff01;一面、二面面试官都不错&a…

fopen php 乱码,如何解决php fgets读取文件乱码的问题

如何解决php fgets读取文件乱码的问题,文件,乱码,简体中文,记事本,页面如何解决php fgets读取文件乱码的问题易采站长站&#xff0c;站长之家为您整理了如何解决php fgets读取文件乱码的问题的相关内容。php fgets乱码的解决办法&#xff1a;首先依次点击“菜单修改->页面属…

一致性哈希算法原理分析及实现

一致性哈希算法常用于负载均衡中要求资源被均匀的分布到所有节点上&#xff0c;并且对资源的请求能快速路由到对应的节点上。具体的举两个场景的例子&#xff1a; 1、MemCache集群&#xff0c;要求存储各种数据均匀的存到集群中的各个节点上&#xff0c;访问这些数据时能快速的…

jsf集成spring_JSF – PrimeFaces和Hibernate集成项目

jsf集成spring本文介绍了如何使用JSF&#xff0c;PrimeFaces和Hibernate开发项目。 下面是一个示例应用程序&#xff1a; 二手技术&#xff1a; JDK 1.6.0_21 Maven的3.0.2 JSF 2.0.3 PrimeFaces 2.2.1 Hibernate3.6.7 MySQL Java连接器5.1.17 MySQL 5.5.8 Apache Tomcat 7.…

帝国 loginjs.php,帝国cms 6.6 后台拿shell

时间:2013-02-27来源:源码库 作者:源码库 文章热度:℃漏洞作者&#xff1a; 付弘雪提交时间&#xff1a; 2013-01-21公开时间&#xff1a; 2013-01-21漏洞类型&#xff1a; 文件上传导致任意代码执行简要描述&#xff1a;帝国cms 6.6版本后台拿shell 比网上流行的方法简单很多由…

合并两个排序的链表递归和非递归C++实现

题目描述&#xff1a; 输入两个单调递增的链表&#xff0c;输出两个链表合成后的链表&#xff0c;要求合成后的链表满足单调不减规则。 1、分析 已知输入的两个链表递增有序&#xff0c;要使输出的链表依然递增有序&#xff0c;可以依次从输入的两个链表中挑选最小的元素插入到…

带有JSF,Servlet和CDI的DynamicReports和JasperReports

在此示例中&#xff0c;我将展示如何将DynamicReport和JasperReports与Servlet和CDI集成。 工具&#xff1a; TIBCO Jaspersoft Studio-6.0.4。最终版 Eclipse Luna服务版本2&#xff08;4.4.2&#xff09;。 WildFly 8.x应用程序服务器。 这是Eclipse上项目层次结构的屏幕…

《Android进阶之光》--View体系与自定义View

No1&#xff1a; View的滑动 1&#xff09;layout()方法的 public class CustomView extends View{private int lastX;private int lastY;public CustomView(Context context,AttributeSet attrs,int defStyleAttr){super(context,attrs,defStyleAttr);}public CustomView(Cont…