ECMAScript将对象的属性分为两种:数据属性和访问器属性。每一种属性内部都有一些特性,这里我们只关注对象属性的[[Enumerable]]特征,它表示是否通过 for-in 循环返回属性,也可以理解为:是否可枚举。然后根据具体的上下文环境的不同,我们又可以将属性分为:原型属性和实例属性。原型属 ...
分类:
编程语言 时间:
2018-12-16 18:14:19
阅读次数:
212
在子线程中new一个Handler为什么会报以下错误? java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() 这是因为Handler对象与其调用者在同一线 ...
分类:
编程语言 时间:
2018-12-15 19:50:27
阅读次数:
267
If our eyes follow a bird across the sky, we make a slower movement called smooth pursuit. 如果我们的眼睛跟着一只鸟儿飞过天空,我们会做一个叫做平稳追踪的慢动作。 Smooth pursuit requires ...
分类:
其他好文 时间:
2018-12-15 17:58:02
阅读次数:
175
activemq死信队列 DLQ-死信队列(Dead Letter Queue)用来保存处理失败或者过期的消息。 出现以下情况时,消息会被redelivered: A transacted session is used and rollback() is called. A transacted ...
分类:
其他好文 时间:
2018-12-13 19:33:51
阅读次数:
215
The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root, each hou ...
分类:
其他好文 时间:
2018-12-11 21:48:39
阅读次数:
217
问题 原因 NewsContext.cs Startup.cs 该错误表示,如果通过AddDbContext配置NewsContext,那么需要添加一个DbContextOptions<NewsContext>类型参数的构造函数到NewsContext类。否则.net core 不能注入时带上Add ...
分类:
数据库 时间:
2018-12-09 10:39:09
阅读次数:
305
Real mode VS Protected Mode 1. A single selector value can only reference 64K of memory (the upper limit of the 16-bit offset). What if a program has ...
分类:
其他好文 时间:
2018-12-07 11:47:04
阅读次数:
182
我们是东亚病夫时,我们被说是黄祸; When we were the sick man of Asia, we were called the yellow peril. 我们被预言是下一个超级大国了,我们被指是主要威胁。 When we are billed to be the next supe ...
分类:
其他好文 时间:
2018-12-05 22:57:46
阅读次数:
249
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
其他好文 时间:
2018-12-04 22:39:12
阅读次数:
196
A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The ...
分类:
其他好文 时间:
2018-12-03 22:57:23
阅读次数:
314