面向对象编程的特点
抽象:抓住核心问题
封装:只能通过对象来访问方法
继承:从已有对象上继承出新的对象
多态:多对象的不同形态
对象的组成
属性:对象下面的变量叫做对象的属性
方法:对象下面的函数叫做对象的方法
var arr = []; arr.number = 10; //对象下面的变量:叫做对象的属性//alert( arr.number );//alert( arr.length );arr.test = function(){ //对象下面的函数 : 叫做对象的方法alert(123); }; arr.test();//方法arr.push();//方法arr.sort();
创建一个对象
var obj=new object();//创建一个空的对象obj.name='小明'; //属性obj.showname=function(){ //方法alert(this.name);//this指向obj } obj.showname();//小明
如果需要创建两个或多个对象
var obj1=new object();//创建一个空的对象obj1.name='小明'; //属性obj1.showname=function(){ //方法alert(this.name);//this指向obj } obj1.showname();//小明var obj2=new object();//创建一个空的对象obj2.name='小灰'; //属性obj2.showname=function(){ //方法alert(this.name);//this指向obj } obj2.showname();//小灰
使用object函数或对象字面量都可以创建面向对象,但需要创建多个对象时,会产生大量的重复代码,可通过工厂方式来解决这个问题
工厂方式 -------------------- 面向对象中的封装函数
//工厂方式 : 封装函数function createperson(name){var obj = new object(); obj.name = name; obj.showname = function(){ alert( this.name ); };return obj; }var p1 = createperson('小明'); p1.showname();var p2 = createperson('小强'); p2.showname();
创建对象用工厂方式来实现,可以传递参数,由于创建对象都是使用object的原生构造函数来实现的,因此无法识别对象类型
构造函数模式 -------------------- 给一个对象添加方法
//new 后面调用的函数叫构造函数function createperson(name){this.name=name;this.showname=function(){ alert(this.name); } }var p1=new createperson('小明');//当new去调用一个函数时,函数中的this就是创建出来的对象而函数中的返回值就是this p1.showname();var p2=new createperson('小强'); p2.showname();
使用自定义的构造函数,定义对象类型的属性和方法,与工厂方式的区别:
没有显式的创建对象
直接将属性和方法赋给this对象
没有return语句
上面例子中:createperson构造函数生成的两个对象p1与p2都是createperson的实例
虽然构造函数解决了上面工厂方式的问题,但是它一样存在缺点,就是在创建对象时,每个对象都有一套自己的方法,每定义一个函数都实例化了一个对象
例如:
function createperson(name){ this.name = name;this.showname = function(){ alert( this.name ); }; }var p1 = new createperson('小明');//p1.showname();var p2 = new createperson('小强');//p2.showname();alert( p1.showname == p2.showname ); //false 它们的值相同,地址不同
测试例子中的p1.showname与p2.showname是否会相等,弹出的结果是false,说明p1和p2实例都包含一个不同的showname实例
再来举几个例子:
var a = [1,2,3];var b = [1,2,3]; alert( a == b ); //false 值相同,地址不同var a = 5;var b = a;b += 3 alert(b); //8alert(a); //5 基本类型 : 赋值的时候只是值的复制
var a = [1,2,3];var b = a;b.push(4); alert(b); //[1,2,3,4]alert(a); //[1,2,3,4] 对象类型 : 赋值不仅是值的复制,而且也是引用的传递
var a = [1,2,3];var b = a; b = [1,2,3,4]; alert(b); //[1,2,3,4]alert(a); //[1,2,3]
对比上面的几个例子,不难看出基本类型和对象类型的区别了,对象类型的赋值不仅是值的复制,也是引用的传递;提到了对象的引用应该很清楚上述p1.showname==p2.showname为何会返回结果是false
原型模式(prototype) -------------------- 给一类对象添加方法
原型(prototype):重写对象下面公用的属性或方法,让公用的属性或方法在内存中只存在一份(提高性能),也就是说所有在原型对象中创建的属性或方法都直接被所有对象实例共享。
原型:类比css中的class
普通方法:类比css中的style
var arr = [1,2,3,4,5];var arr2 = [2,2,2,2,2]; array.prototype.sum = function(){//原型prototype : 要写在构造函数的下面var result = 0;for(var i=0;i<this.length;i++){ result += this[i]; }return result; }; alert( arr.sum() ); //15alert( arr2.sum() ); //10
原型优先级:如果在实例中添加了一个属性,而该属性与实例原型中的一个属性同名,该属性将会屏蔽原型中的那个属性
例子1:
var arr = []; arr.number = 10; array.prototype.number = 20; alert(arr.number);//10
例子2:
array.prototype.a=12;//原型属性var arr=[1,2,3]; alert(arr.a);//12arr.a=5;//实例属性alert(arr.a);//5
工厂方式之原型
function createperson(name){//普通方法this.name=name; } createperson.prototype.showname=function(){//原型alert(this.name); }var p1=new createperson('小明'); p1.showname();var p2=new createperson('小强'); p2.showname(); alert( p1.showname== p2.showname);//true
由上述例子中:p1.showname== p2.showname弹出的结果是true,可见原型解决了构造函数中“每定义一个函数都实例化了一个对象”的问题
原型的运用
选项卡实例:
<!doctype html><html><head lang="en"><meta charset="utf-8"><title>选项卡</title><style>#div1 div{width:400px;height:300px;border:1px solid #ccc;overflow: hidden;display: none;margin: 15px 0;}#div1 input{color: #fff;width:100px;height:40px;background: darkseagreen;border:none;font-size: 14px;letter-spacing: 5px;}#div1 p{font-size: 20px;line-height: 24px;text-align: center;color:darkgreen;}#div1 .title{padding: 0;font-weight: bold;}#div1 .active{background:sandybrown;color:#fff;}</style><script>window.onload=function(){var odiv=document.getelementbyid('div1');var ainput=odiv.getelementsbytagname('input');var adiv=odiv.getelementsbytagname('div');var i=0;for(i=0;i<ainput.length;i++){ ainput[i].index=i; ainput[i].onmousemove=function(){for(var i=0;i<ainput.length;i++){ ainput[i].classname=''; adiv[i].style.display='none'; } ainput[this.index].classname='active'; adiv[this.index].style.display='block'; } } }</script></head><body><div id="div1"><input class="active" type="button" value="五言律诗"><input type="button" value="七言律诗"><input type="button" value="五言绝句"><input type="button" value="七言绝句"><div style="display: block;"><p class="title">落 花</p><p class="author">李商隐</p><p>高阁客竟去,小园花乱飞。</p><p>参差连曲陌,迢递送斜晖。</p><p>肠断未忍扫,眼穿仍欲归。</p><p>芳心向春尽,所得是沾衣。</p></div><div><p class="title">蜀 相</p><p class="author">杜甫</p><p>丞相祠堂何处寻,锦官城外柏森森。</p><p>映阶碧草自春色,隔叶黄鹂空好音。</p><p>三顾频烦天下计,两朝开济老臣心。</p><p>出师未捷身先死,长使英雄泪满襟。</p></div><div><p class="title">八阵图</p><p class="author">杜甫</p><p>功盖三分国,名成八阵图。</p><p>江流石不转,遗恨失吞吴。</p></div><div><p class="title">泊秦淮</p><p class="author">杜牧</p><p>烟笼寒水月笼沙,夜泊秦淮近酒家。</p><p>商女不知亡国恨,隔江犹唱后庭花。</p></div></div></body></html>
效果(鼠标经过按钮时选项卡切换):
面向对象选项卡:
<!doctype html><html><head lang="en"><meta charset="utf-8"><title>选项卡</title><style>#div1 div,#div2 div{width:400px;height:300px;border:1px solid #ccc;overflow: hidden;display: none;margin: 15px 0;}#div1 input,#div2 input{color: #fff;width:100px;height:40px;background: darkseagreen;border:none;font-size: 14px;letter-spacing: 5px;}#div1 p,#div2 p{font-size: 20px;line-height: 24px;text-align: center;color:darkgreen;}#div1 .title,#div2 .title{padding: 0;font-weight: bold;}#div1 .active,#div2 .active{background:sandybrown;color:#fff;}</style><script>window.onload=function(){var t1=new tabswitch('div1'); t1.switch(); var t2=new tabswitch('div2');//面向对象的复用性 t2.switch(); t2.autoplay();/*alert(t2.switch==t1.switch);//ture*/}function tabswitch(id){this.odiv=document.getelementbyid(id);this.ainput=this.odiv.getelementsbytagname('input');this.adiv=this.odiv.getelementsbytagname('div');this.inow=0;//自定义属性} tabswitch.prototype.switch=function(){//原型for(var i=0;i<this.ainput.length;i++){var this=this;//将指向面向对象的this保存下来this.ainput[i].index=i;this.ainput[i].onmousemove=function(){ this.tab(this);//this指向面向对象 this指向this.ainput[i] } } } tabswitch.prototype.tab=function(obj){//原型for(var i=0;i<this.ainput.length;i++){this.ainput[i].classname='';this.adiv[i].style.display='none'; }this.ainput[obj.index].classname='active';this.adiv[obj.index].style.display='block'; }//自动播放 tabswitch.prototype.autoplay=function(){var this=this; setinterval(function(){if(this.inow==this.ainput.length-1){ this.inow=0; }else{ this.inow++; }for(var i=0;i<this.ainput.length;i++){ this.ainput[i].classname=''; this.adiv[i].style.display='none'; } this.ainput[this.inow].classname='active'; this.adiv[this.inow].style.display='block'; },1000); }</script></head><body><div id="div1"><input class="active" type="button" value="五言律诗"><input type="button" value="七言律诗"><input type="button" value="五言绝句"><input type="button" value="七言绝句"><div style="display: block;"><p class="title">落 花</p><p class="author">李商隐</p><p>高阁客竟去,小园花乱飞。</p><p>参差连曲陌,迢递送斜晖。</p><p>肠断未忍扫,眼穿仍欲归。</p><p>芳心向春尽,所得是沾衣。</p></div><div><p class="title">蜀 相</p><p class="author">杜甫</p><p>丞相祠堂何处寻,锦官城外柏森森。</p><p>映阶碧草自春色,隔叶黄鹂空好音。</p><p>三顾频烦天下计,两朝开济老臣心。</p><p>出师未捷身先死,长使英雄泪满襟。</p></div><div><p class="title">八阵图</p><p class="author">杜甫</p><p>功盖三分国,名成八阵图。</p><p>江流石不转,遗恨失吞吴。</p></div><div><p class="title">泊秦淮</p><p class="author">杜牧</p><p>烟笼寒水月笼沙,夜泊秦淮近酒家。</p><p>商女不知亡国恨,隔江犹唱后庭花。</p></div></div><div id="div2"><input class="active" type="button" value="五言律诗"><input type="button" value="七言律诗"><input type="button" value="五言绝句"><input type="button" value="七言绝句"><div style="display: block;"><p class="title">落 花</p><p class="author">李商隐</p><p>高阁客竟去,小园花乱飞。</p><p>参差连曲陌,迢递送斜晖。</p><p>肠断未忍扫,眼穿仍欲归。</p><p>芳心向春尽,所得是沾衣。</p></div><div><p class="title">蜀 相</p><p class="author">杜甫</p><p>丞相祠堂何处寻,锦官城外柏森森。</p><p>映阶碧草自春色,隔叶黄鹂空好音。</p><p>三顾频烦天下计,两朝开济老臣心。</p><p>出师未捷身先死,长使英雄泪满襟。</p></div><div><p class="title">八阵图</p><p class="author">杜甫</p><p>功盖三分国,名成八阵图。</p><p>江流石不转,遗恨失吞吴。</p></div><div><p class="title">泊秦淮</p><p class="author">杜牧</p><p>烟笼寒水月笼沙,夜泊秦淮近酒家。</p><p>商女不知亡国恨,隔江犹唱后庭花。</p></div></div></body></html>
效果(第二个选项卡加了一个自动切换功能):
面向对象中this的问题
一般会出现问题的情况有两种:
定时器
事件
例子1:
//定时器function aaa(){ var _this=this;//将当前this值保存this.a=12; setinterval(function(){//定时器中this指向window _this.show(); },1000); } aaa.prototype.show=function(){ alert(this.a); }var obj=new aaa();//12
例子2:
<!doctype html><html><head lang="en"><meta charset="utf-8"><title>面向对象中this的问题-----事件</title><script>function bbb(){var _this=this;this.b=5; document.getelementbyid('btn1').onclick=function(){//点击事件 _this.show(); }}
bbb.prototype.show=function(){ alert(this.b); } window.onload=function(){var p2=new bbb(); }</script></head><body><input id="btn1" type="button" value="按钮"></body></html>
上面两个是分别对定时器和事件中this问题的解决方法,即将指向对象的this保存到了_this中,在嵌套函数中调用对象的方法或属性时用 _this.属性 或 _this.方法
再来个实例:
拖拽效果:
<!doctype html><html><head lang="en"><meta charset="utf-8"><title>最初写的拖拽效果</title> <style> #div1{ width:100px; height:100px; background: red; position: absolute; } </style><script>window.onload=function(){var odiv=document.getelementbyid('div1'); odiv.onmousedown=function(ev){var oevent=ev||event;var disx=0;var disy=0;var disx=oevent.clientx-odiv.offsetleft;var disy=oevent.clienty-odiv.offsettop; document.onmousemove=function(ev){var oevent=ev||event; odiv.style.left=oevent.clientx-disx+'px'; odiv.style.top=oevent.clienty-disy+'px'; }; document.onmouseup=function(){ document.onmousemove=null; document.onmouseup=null; };return false; } }</script></head><body><div id="div1"></div></body></html>
面向对象的拖拽
<!doctype html><html><head lang="en"><meta charset="utf-8"><title>面向对象写的拖拽效果</title><style>#div1{width:100px;height:100px;background: red;position: absolute;}</style><script>window.onload=function(){var p=new darg('div1'); p.init(); }function darg(id){this.odiv=document.getelementbyid(id); //属性this.disx=0;//属性this.disy=0;//属性} darg.prototype.init=function(){//原型 方法var this=this;this.odiv.onmousedown=function(ev){var oevent=ev||event; this.fndown(oevent);return false; } } darg.prototype.fndown=function(ev){//原型 方法var this=this;this.disx=ev.clientx-this.odiv.offsetleft;this.disy=ev.clienty-this.odiv.offsettop; document.onmousemove=function(ev){var oevent=ev||event; this.fnmove(oevent); }; document.onmouseup=function(){ this.fnup(); }; } darg.prototype.fnmove=function(ev){//原型this.odiv.style.left=ev.clientx-this.disx+'px';this.odiv.style.top=ev.clienty-this.disy+'px'; } darg.prototype.fnup=function(){//原型 document.onmousemove=null; document.onmouseup=null; }</script></head><body><div id="div1"></div></body></html>
以上就是什么是面向对象编程(oop)?面向对象编程的特点的详细内容。
