08 2017 档案

摘要:bill是 Employee类型的实例,_proto_指向Employee.prototype Employee.prototype有一个constructor属性,指向Employee函数自身 function employee 就是一个函数类型的对象了,有标准的arguments、caller、 阅读全文
posted @ 2017-08-21 08:35 老豆芽 阅读(1267) 评论(0) 推荐(0)
摘要:Listeners and Event Domains In Ext JS 4.2, the MVC event dispatcher was generalized with the introduction of event domains. These event domains interc 阅读全文
posted @ 2017-08-19 22:29 老豆芽 阅读(231) 评论(0) 推荐(0)
摘要:邮槽创建在服务程序内,可以创建成功, 但外部客户端连接时 m_hMailslot = CreateFile("\\\\.\\mailslot\\zdpMailslot",GENERIC_WRITE,FILE_SHARE_READ,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_N 阅读全文
posted @ 2017-08-18 22:30 老豆芽 阅读(1902) 评论(0) 推荐(0)
摘要:http://docs.sencha.com/extjs/6.2.0/guides/core_concepts/data_package.html 阅读全文
posted @ 2017-08-17 22:13 老豆芽 阅读(716) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-08-13 22:22 老豆芽 阅读(279) 评论(0) 推荐(0)
摘要:1.函数声明语法 function sum(num1, num2){ return num1 + num2; } 2.函数表达式定义 var sum = function (num1, num2){ return num1 + num2; } 3.Function 构造函数 var sum = ne 阅读全文
posted @ 2017-08-13 16:01 老豆芽 阅读(1023) 评论(0) 推荐(0)