- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很困惑为什么Person
的实例
(例如person1
)能够更改属性jobs
,它是一个数组
,在Person.prototype
中定义,但不是在name
和height
等其他属性中定义。当 person1
尝试修改其属性
后,person2
从 Person.prototype
调用属性时,就会出现这种情况。我很欣赏任何想法或想法。谢谢。
function Person(){
}
Person.prototype = {
constructor : Person,
name: "Hello",
height: 6,
jobs: ['developer', 'student'],
getInfo: function(){
alert("My name is "+this.name+" and my height is: "+this.height+" feet");
}
}
var person1 = new Person();
person1.height = 5;
person1.name = "World";
person1.jobs.push('cook');
alert(person1.jobs); //developer, student, cook
alert(person1.height); //5
alert(person1.name); //World
var person2 = new Person();
alert(person2.height); //6
alert(person2.jobs); //developer, student, cook
alert(person2.name); //Hello
最佳答案
因为当你这样做时
person1.height = 5;
person1
引用的对象获取其自己的 height
属性,该属性隐藏了它从其继承的height
原型(prototype)。
但是当你这样做时:
person1.jobs.push('cook');
您不是分配给jobs
,您只是更改jobs
引用的状态(数组)。所以你要改变原型(prototype)上的那个。
如果你这样做了:
person1.jobs = ['cook'];
这就像我们的 height
示例,person1
将获得其自己的 jobs
属性。如果你想保留原型(prototype)的工作,你可以先复制数组:
person1.jobs = person1.jobs.slice();
person1.jobs.push('cook');
让我们看看内存中发生了什么:
当您创建 Person
函数及其 Person.prototype
属性上的对象时,我们会在内存中保存以下内容:
+------------------------------------------+ | | | | \ +------------+ |Person---->| (function) | | +------------+ +---------------+ | | prototype |---->| (object) | | +------------+ +---------------+ | | constructor |---+ | getInfo |------>(not shown) | name: "Hello" | | height: 6 | +----------------+ | jobs |----->| (array) | +---------------+ +----------------+ | 0: "developer" | | 1: "student" | +----------------+
Then we do
var person1 = new Person();
我们有这个:
+----------------------------------------------+ | | | | \ +------------+ |Person---->| (function) | | +------------+ +---------------+ | | prototype |-------->| (object) | | +------------+ / +---------------+ | | | constructor |---+ | | getInfo |------>(not shown) | | name: "Hello" | | | height: 6 | +----------------+ | | jobs |----->| (array) | | +---------------+ +----------------+ | | 0: "developer" | | | 1: "student" | | +----------------+ +---------------+ |person1--->| (object) | | +---------------+ | | [[Prototype]] |---+ +---------------+
When you do this:
person1.height = 5;
person1
获取其自己的 高度
(其他一切保持不变):
(to Person.prototype) +---------------+ |person1--->| (object) | | +---------------+ | | [[Prototype]] |---+ | height: 5 | +---------------+
但是执行 person1.jobs.push('cook');
只是改变了 jobs
指向的数组的状态:
+----------------------------------------------+ | | | | \ +------------+ |Person---->| (function) | | +------------+ +---------------+ | | prototype |-------->| (object) | | +------------+ / +---------------+ | | | constructor |---+ | | getInfo |------>(not shown) | | name: "Hello" | | | height: 6 | +----------------+ | | jobs |----->| (array) | | +---------------+ +----------------+ | | 0: "developer" | | | 1: "student" | | +->| 2: "cook" | | | +----------------+ +---------------+ | |person1--->| (object) | | | +---------------+ | NOTE WHAT | | [[Prototype]] |---+ CHANGED ----+ | height: 5 | +---------------+
关于Javascript:为什么实例能够更改数组,但不能更改原型(prototype)中定义的其他属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38324770/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!