1、实例成员与静态成员:
在es6的类中。声明在类的构造方法中的成员称为实例成员,可以使变量或者方法,实例成员只能通过实例对象来访问。静态成员是通过类直接添加的,只能通过类来访问。
<script> class Star{ constructor(uname, age){ this.uname = uname; this.age = age; this.sing = function () { console.log(this.uname+‘正在唱歌‘); } } } //实例成员就是在构造方法中的成员,可以是一个变量,也可以是一个函数 //实例成员只能通过实例化对象来访问 var s1 = new Star(‘刘德华‘,50); s1.sing() //静态成员是通过类直接添加的,只能通过类来访问 Star.country_ = ‘中国‘; console.log(Star.country_); console.log(s1.country_); //会提示没有这个属性 </script>
原文地址:https://www.cnblogs.com/gzwzx/p/12011214.html
时间: 2024-10-17 02:42:01