javascript创建对象的三种方法

  • 2019-01-07 12:00:27
  • 2,813 次阅读
  • 稿源:天马行空

面向对象:我们什么都不用管,直接找到一个会做事的”对象”来帮助我们完成任务,jQuery就是一个面向对象的例子,他们把一些方法和属性都给我们封装好了,我们可以不去了解其内部是如何实现,只要拿到它会使用就可 以了。下面是使用原生的js创建对象,会帮助我们更好的理解面向对象。

(1)最终代码图:

obj

(2)代码过程:

  1. <script type="text/javascript">
  2. // 第一种方法:通过Json的方式创建对象
  3. person = {
  4. 'name':'马行行',
  5. 'age': 18,
  6. 'gender': '男',
  7. 'sayHello' : function() {
  8. alert('你好,我是' + this.name + ',芳年' + this.age + ',性别:' + this.gender);
  9. }
  10. };
  11. // person.sayHello();
  12. person['sayHello']();
  13. // 第二种方法:通过new关键字创建对象
  14. mobile = new Object();
  15. mobile.brand = 'huawei';
  16. mobile.color = 'white';
  17. mobile.introduce = function() {
  18. console.log('我的手机品牌是' + this.brand + ',颜色是' + this.color);
  19. }
  20. mobile.introduce();
  21. // 第三种方法:通过构造函数创建对象(构造函数就是模板)
  22. // 第三种的第一种形式
  23. Student = function() {
  24. this.name = '小明';
  25. this.studentID = 128126;
  26. this.study = function() {
  27. alert('我叫' + this.name + ',学号:' + this.studentID);
  28. }
  29. };
  30. s = new Student();
  31. alert(s.name);
  32. s.study();
  33. // 第三种的第二种形式
  34. Car = function(newbrand,newColor) {
  35. this.brand = newbrand;
  36. this.color = newColor;
  37. this.run = function() {
  38. alert('路上跑着一辆' + this.color + this.brand);
  39. }
  40. };
  41. c = new Car('兰博基尼','红色');
  42. c.run();
  43. // 第三种的第三种形式
  44. Computer = function(obj) {
  45. this.brand = obj.newBrand;
  46. this.color = obj.newColor;
  47. this.netPlay = function() {
  48. alert('这是一台' + this.color + this.brand + '笔记本电脑');
  49. }
  50. };
  51. var target = {newBrand:'联想',newColor:'黑色'}
  52. var c = new Computer(target);
  53. c.netPlay();
  54. // 第三种的第四种形式
  55. // Desk.prototype是Desk的原型属性,只与自己的对象有关
  56. // Desk.prototype是d的原型对象
  57. // prototype是标准的,__proto__是非标准的,做调试用
  58. // 如果对象中没有该属性或方法,就会到与之相关的prototype中去寻找
  59. // 原型属性不会共享,只会添加;原型方法可以共享
  60. Desk = function(obj) {
  61. this.length = obj.newLength;
  62. this.width = obj.newWidth;
  63. }
  64. Desk.prototype.height = '1.2米';
  65. Desk.prototype.put = function() {
  66. alert('桌子用来摆放东西');
  67. }
  68. var d = new Desk({newLength:'1.5米',newWidth:'1米'});
  69. // alert(d.length);
  70. // alert(d.height);
  71. d.put();
  72. // 第三种的第五种形式
  73. Cup = function(obj) {
  74. this.shape = obj.newShape;
  75. this.color = obj.newColor;
  76. }
  77. Cup.prototype = {
  78. sh:function() {
  79. alert(this.shape);
  80. },
  81. co:function() {
  82. alert(this.color);
  83. }
  84. }
  85. var cu = new Cup({newShape:'圆形',newColor:'蓝色'});
  86. alert(cu.shape);
  87. cu.sh();
  88. cu.co();
  89. // 第三种的第六种形式
  90. Blog = function(obj) {
  91. this._init(obj)
  92. }
  93. Blog.prototype = {
  94. _init:function(obj) {
  95. this.domain = obj.domain;
  96. this.host = obj.host;
  97. },
  98. display:function() {
  99. alert(this.domain + this.host);
  100. }
  101. }
  102. var b = new Blog({domain:'maxing128.com',host:'阿里云'});
  103. b.display();
  104. alert(b.domain);
  105. </script>

喜欢 2

文章评论 (0)

表情

大眼 可爱 大笑 坏笑 害羞 发怒 折磨 快哭了 大哭 白眼 晕 流汗 困 腼腆 惊讶 憨笑 色 得意 骷髅 囧 睡觉 眨眼 亲亲 疑问 闭嘴 难过 淡定 抗议 鄙视 猪头