Heim  >  Artikel  >  Web-Frontend  >  Javascript 函数对象的多重身份_javascript技巧

Javascript 函数对象的多重身份_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:50:531262Durchsuche
复制代码 代码如下:

function Flower()
{
this.name="rose";
this.color="red";
}
//Flower() 作为构造函数
var obj=new Flower();
//输出 true, flower 作为类引用
alert(obj instanceof Flower);

function 关键字可以声明普通函数,这一点和其他语言中函数的概念是相同的。 除此之外,他还可以用于类的声明和实现、对象的构造函数以及类的引用。
在上面的例子中通过function 关键字声明了Flower 类 ,并且通过this关键字声明了两个属性name 和color ;然后在创建obj对象时,Flower又起到了对象构造函数的作用;最后使用instanceof 关键字判断obj对象是否是Flower类的实例,此时Flower又起到了类引用的作用
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn