码迷,mamicode.com
首页 >  
搜索关键字:prototype    ( 5322个结果
Object.create()方法的实现
Object.create()方法的实现 Object.create()方法用于创建一个新对象并将这个新对象的[[Prototype]]设置为特定的对象。另外,Object.create()方法还有一个可选的参数propertiesObject,这个参数类似于Object.definePropert ...
分类:其他好文   时间:2021-04-29 11:58:29    阅读次数:0
for..in loops iterate over the entire prototype chain, which is virtually never what you want.
for..in loops iterate over the entire prototype chain, which is virtually never what you want. 意思是使用for..in会遍历整个原型链,这样不是很好的实现方法,推荐使用Object.keys formRu ...
分类:其他好文   时间:2021-04-27 14:24:47    阅读次数:0
@Scope注解
@Scope注解是springIoc容器中的一个作用域,在 Spring IoC 容器中具有以下几种作用域: 基本作用域singleton(单例) prototype(多例) Web 作用域(reqeust、session、globalsession) 自定义作用域 参数 singleton单例模式 ...
分类:其他好文   时间:2021-04-21 11:54:59    阅读次数:0
Array.prototype.fill 填充值被复用的问题
考察如下示例代码: // 创建二维数组 const arr = Array(2).fill([]); // 操作第一个元素 arr[0].push(1); // 结果是操作了所有数组 console.log(arr); // [ [ 1 ], [ 1 ] ] 和 new 不 new 关系,以下代码问 ...
分类:其他好文   时间:2021-04-20 15:27:38    阅读次数:0
6.原型模式prototype
该模式的作用就是复制对象,特别是复杂的对象。 1.浅克隆 两个要点:实现Cloneable接口,重写clone()方法 public class Product implements Cloneable{ private String name; private Date date; public ...
分类:其他好文   时间:2021-04-20 15:18:21    阅读次数:0
String.prototype.replace( )
调用replace()找出每一个匹配的结果是相互独立的。先看例子: var text = "cat,bat,sat,fat"; var pattern = /(.at)/g; var res = text.replace(pattern,'world($1,$2)'); //world(cat,$2 ...
分类:其他好文   时间:2021-04-15 12:16:32    阅读次数:0
[].forEach.call()
要想明白[].forEach.call()这种写法,需要了解以下两点: foreach() 是数组的方法,只有数组才能调用,forEach()可以接受一个function作为参数; call()的使用一般是为了改变this的值; call()的语法: function.call(thisArg, a ...
分类:其他好文   时间:2021-04-12 11:52:35    阅读次数:0
ES6 Class
JavaScript语言中,生成实例对象的传统方法是通过构造函数 function Point(x,y){ this.x = x; this.y = y; } Point.prototype.toString = function (){ return '('+this.x + ',' + this ...
分类:其他好文   时间:2021-04-09 13:35:12    阅读次数:0
Lecture 2. Discovering what people can't tell you: Contextual Inquiry and Analysis Methodology
Contextual Inquiry and Analysis Methodology—— 背景研究 & 分析方法 1、Some usability Methods Contextual inquiry Contextual Analysis (Design) Paper prototype 【原型 ...
分类:其他好文   时间:2021-04-05 12:46:46    阅读次数:0
原型+原型链+闭包+立即执行函数+插件开发初识
一个比较强的分析:针对item的乘除进行封装成方法,针对不同的方法进行item的乘除,但是还是不够简介 来个更加简洁的:这就有点像java里面的一些封装,多写这样的代码对之后的专业素养能有一个比较大的提升 原型: 原型prototype其实是function对象的一个属性,将其打印出来它也是对象。 ...
分类:其他好文   时间:2021-04-01 13:16:03    阅读次数:0
5322条   上一页 1 2 3 4 5 ... 533 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!