全部博文(80)
发布时间:2013-05-16 18:18:51
typeof(1): numbertypeof(NaN): numbertypeof(Number.MIN_VALUE): numbertypeof(Infinity): numbertypeof("123"): stringtypeof(true): booleantypeof(window): objecttypeof(Array()): objecttypeof(function(){}): functiontypeof(document): objecttypeof(null): objecttypeof(eval): functiontypeof(Date):.........【阅读全文】
发布时间:2013-05-16 18:12:55
单例模式的双检索实现,是依赖于编译器的,很多平台和带优化的编译器,这样写是错误的。 如果编译成如下代码,那双检索的单例没有问题。 1. temp = 分配内存 2. 调用temp的Constructor 3. instance = temp .........【阅读全文】