1. 定义类型
function UserObject(parameter) {
}
parameter 可省略,相当于C#中构造函数参数。
2. 实例化自定义类型
3. 添加属性
function userobject(parameter){
this.firstproperty=parameter
this.secondproperty="This is the second property"
}
//使用
<script> <BR>var myobject=new userobject("hi there.") <BR>//alerts "hi there." <BR>alert(myobject.firstproperty) <BR>//writes "This is the second property" <BR>document.write(myobject.secondproperty) <BR></script>
4.添加方法 (circle类)
//first method function
function computearea(){
var area=this.radius*this.radius*3.14
return area
}
//second method function
function computediameter(){
var diameter=this.radius*2
return diameter
}
关联到自定义类型:
使用自定义方法:
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn