应网友的要求写的一个 对象属性访问器的判断

Posted ax=null

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了应网友的要求写的一个 对象属性访问器的判断相关的知识,希望对你有一定的参考价值。

function Person(name) {
  this.name = name;
  this.flag = 0;
  Object.defineProperty(this, ‘name‘, {
    get: function() { return name;},
    set: function(newName) {
      if (this.flag) {
        name = newName;
        this.flag = 0;
      }
      return name;
    }
  });
  this.setName = function(newName) {
    this.flag = 1;
    this.name = newName;
  }
};


var manx = new Person(‘manx‘);
console.log(manx.name); // manx
manx.name = "bob";
console.log(manx.name); // manx

manx.setName(‘jack‘);
console.log(manx.name); // ‘jack‘

  

以上是关于应网友的要求写的一个 对象属性访问器的判断的主要内容,如果未能解决你的问题,请参考以下文章

java 如何实现判断一个对象所有的属性是不是为空

选择器的优先级

Weka 分类器的参数

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数

用于片段着色器的 OpenGL GLSL 绑定采样器

怎么用js拿到一个对象里面的属性