在 ECMAScript 中,变量可以存在两种类型的值,即原始值和引用值。 Boolean. 布尔值,true 和 false. null. 一个表明 null 值的特殊关键字。 JavaScript 是大小写敏感的,因此 null 与 Null、NULL或其他变量完全不同。 undefined. ...
分类:
Web程序 时间:
2017-09-23 17:16:05
阅读次数:
211
这道题为简单题 题目: 思路: 最开始我只是在sumRange里面写函数,写出来之后总是超时,在查询之后才知道有些东西要写在init之中,所以我先遍历数组,把数组的第n个元素的值变为前n个元素值之和,然后传入sumRange。 代码: ...
分类:
其他好文 时间:
2017-09-22 14:09:12
阅读次数:
103
hdu 1520,poj2342 Anniversary party Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 12664 Accepted ...
分类:
其他好文 时间:
2017-09-21 23:30:07
阅读次数:
214
1. 单一职责原则(Single Responsibility Principle - SRP) 原文:There should never be more than one reason for a class to change. 译文:永远不应该有多于一个原因来改变某个类。 理解:对于一个类而 ...
分类:
其他好文 时间:
2017-09-18 17:25:10
阅读次数:
128
Assume you have an array of length n initialized with all 0's and are given k update operations. Each operation is represented as a triplet: [startInd ...
分类:
其他好文 时间:
2017-09-17 11:32:03
阅读次数:
153
1.查看主机和数据库信息 $ sqlplus / as sysdba Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production With the Partitioning, R ...
分类:
系统相关 时间:
2017-09-15 23:13:21
阅读次数:
318
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. For example, giv ...
分类:
移动开发 时间:
2017-09-11 10:29:15
阅读次数:
288
装饰器 装饰器的特点: 用户感觉不到装饰器的存在 在一个函数前后唐家功能 本身的函数不会改变 开放封闭原则 开放 对于扩展是开放的 封闭 对于修改是封闭的 装饰器的基本结构 例子 例二 ...
分类:
其他好文 时间:
2017-09-09 17:11:27
阅读次数:
129
【async.waterfall】 if any of the tasks pass an error to their own callback, the next function is not executed, and the main callback is immediately cal ...
分类:
其他好文 时间:
2017-09-07 18:09:05
阅读次数:
160
因为在react中,react的生命周期中的setState()之后的shouldComponentUpdate()阶段默认返回true,所以会造成本组件和子组件的多余的render,重新生成virtual dom,并进行virtual dom diff,所以解决办法是我们在本组件或者子组件中的sh ...
分类:
其他好文 时间:
2017-09-07 00:49:28
阅读次数:
135