博客列表 >js之Class构造函数

js之Class构造函数

P粉933302309
P粉933302309原创
2022年08月16日 00:42:36833浏览

1.用class实现自有成员,共享成员,静态成员的声明和输出!

  1. class US2 {
  2. // 构造方法,初始化
  3. constructor(name, num) {
  4. // 自有成员
  5. this.name = name;
  6. this.num = num;
  7. }
  8. // 共享成员
  9. getInfo() {
  10. return `${this.name} : (${this.num})`;
  11. }
  12. // 静态成员
  13. static static = "6666";
  14. }
  15. // 自有实例
  16. let us1 = new US2("老王111", 10);
  17. let us2 = new US2("老王222", 10);
  18. console.log(us1, us2);
  19. // 共享实例
  20. console.log(us1.getInfo(), us2.getInfo());
  21. // 静态实例
  22. console.log(US2.static);

2.数组和对象的解构方法

1.数组解构

  1. let [aa, bb] = ["你好啊", "我很好"];
  2. console.log(aa, bb);
  3. // 更新
  4. [aa, bb] = ["hello", "world"];
  5. console.log(aa, bb);
  6. // 参数不足:给默认值
  7. [aa, bb, cc = "笨蛋"] = ["hello", "world"];
  8. console.log(aa, bb, cc);
  9. // 参数过多:...rest
  10. [a, b, ...arr] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
  11. console.log(a, b);
  12. console.log("----------------");
  13. console.log(arr);
  14. console.log("----------------");
  15. console.log(a, b, ...arr);

2.对象结构

  1. let { id, jg, num } = { id: 1, jg: 2000, num: 3 };
  2. console.log(id, jg, num);
  3. // 更新
  4. ({ id, jg, num } = { id: 100, jg: 5000, num: 20 });
  5. console.log(id, jg, num);
  6. // 命名冲突,起别名
  7. ({ id: id2, jg1, num1 } = { id: 10, jg1: 500, num1: 200 });
  8. console.log(id2, jg1, num1);
  9. // 演示案例
  10. let user = { id: 1, jg: 880, num: 3 };
  11. function getUser({ id, jg, num }) {
  12. console.log(id, jg, num);
  13. }
  14. getUser(user);
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议