面向对象开发。display()方法,然后去掉数组的值调用display()

Posted 程序员入门到放弃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象开发。display()方法,然后去掉数组的值调用display()相关的知识,希望对你有一定的参考价值。

<script type="text/javascript"> 
/* 
示例用一个对象组合表示学校中的课程 
‘Lecture‘类 
用name和teacher作为参数 
*/ 
function Lecture(name,teacher){ 
this.name=name; 
this.teacher=teacher; 
} 
//‘Lecture‘类的一个方法,用于生成一条信息 
Lecture.prototype.display=function(){ 
return this.name + " 是教 "+this.teacher +" 的。" ; 
} 
//下面用new来构造一个新的函数,然后调用display方法 
var L = new Lecture("李老师","英语"); 
var L_msg = L.display(); 
//alert(L_msg); 
//新定义一个‘AllLecture‘类 
//用‘lec‘作为参数,lec是一个数组 
function AllLecture( lec ){ 
this.lec = lec; 
} 
//‘AllLecture‘类的一个方法,用于生成所有的课程信息 
//需要循环输出‘lec‘ 
AllLecture.prototype.display=function(){ 
var str = ""; 
for(var i=0;i<this.lec.length;i++){ 
//str += this.lec[i] + "\n"; 
str += this.lec[i].display() + "\n"; //把display()放到这里调用 
} 
return str; 
} 
//下面使用new来够造一个新的函数,用于生成所有的信息 
//函数的参数是数组。 
//使用‘Lecture‘类来生成数组的值。 
//var B = new AllLecture( [ new Lecture("李老师","英语").display() , new Lecture("张老师","数学").display() , new Lecture("刘老师","物理").display() ] ); 
var B = new AllLecture( [ new Lecture("李老师","英语") , new Lecture("张老师","数学") , new Lecture("刘老师","物理") ] ); 
var B_str = B.display(); 
alert(B_str); 
</script> 

 

以上是关于面向对象开发。display()方法,然后去掉数组的值调用display()的主要内容,如果未能解决你的问题,请参考以下文章

day7----面向对象编程进阶

java学习之面向对象

JAVA中如何去掉字符串前面的0

Js中啥是对象,啥是方法

6 面向对象之类和对象

javscript巧用对象特性去掉数组重复项并排序