第一章 富有表现力的javascript
一、Function添加新方法
如果在Function对象中添加一人新方法可以这样写:Function.porototype.method("方法名", function(){ 执行的内容 })
1 <script> 2 var Anim = function(){} 3 4 // 为Anim对象添加方法 5 Anim.mothod("start", function(){ ... }). 6 mothod("stop", function(){ ... }); 7 </script>
二、使用设计模式的好处
1、可维护性好:降低了模块间的耦合度.
2、性能:某些模式是起优化的作用,提高运行速度.
第三章 封装和信息隐藏
一、公有、私有、特权
时间: 2024-11-03 22:25:12