首页 > 编程语言 > 详细

javascript中的面向对象

时间:2015-07-29 00:36:09      阅读:213      评论:0      收藏:0      [点我收藏+]

javascript没有类,但有对象。下面是javascript面向对象时调用的三种办法。

第一种:

function Student(name){
  this.name = name;
  this.hello = function(){
    alert(‘hello, ‘+this.name+‘!‘);
  }
}
var xiaoming = new Student(‘小明‘);

xiaoming.name;
xiaoming.hello();

第二种

var Student = {
  name: ‘‘,
  hello:function(){
    alert(‘hello,‘+this.name+‘!‘);
  }
}
var s = Student;
s.name = "小明";
s.hello();

第三种

var Student = {
  name: ‘‘,
  hello:function(){
    alert(‘hello,‘+this.name+‘!‘);
  }
}

function createStudent(name){
  var s = Object.create(Student);
  s.name = name;
  return s;
}

var xiaoming = createStudent(‘小明‘);
xiaoming.hello();

 

 

javascript中的面向对象

原文:http://www.cnblogs.com/alexkn/p/4684619.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!