摘要: 'use strict'; // Add ECMA262-5 method binding if not supported natively // if (!('bind' in Function.prototype)) { Function.prototype.bind= function(ow 阅读全文
posted @ 2016-12-22 10:42 ByronWu 阅读(212) 评论(0) 推荐(0)
摘要: .net基础概念和常用框架(关键点) .net 基本概念(从运行时,编译处理和编程思路解释,注意项) 好吧,我个人倾向于把.net看成是一个运行时平台,我们写的C#代码通过编译器生成托管模块,它包括标准Windows PE文件头, CLR头,元数据和中间语言代码。运行托管的可执行文件会创建Windo 阅读全文
posted @ 2016-08-29 16:09 ByronWu 阅读(1221) 评论(0) 推荐(1)
摘要: Abstract classes have the following features: An abstract class cannot be instantiated. An abstract class may contain abstract methods and accessors. 阅读全文
posted @ 2016-08-25 17:56 ByronWu 阅读(219) 评论(0) 推荐(0)
摘要: 题目:给定一个整数数组,要求放回最大值的组合字符串. 例如 12, 345, 6789. 返回678934512 第一印象想用动态规划,后来觉得不太合适,穷举组合: 123456789 126789345 345126789 345678912 678912345 678934512 一共有N!种组 阅读全文
posted @ 2016-08-03 12:16 ByronWu 阅读(165) 评论(0) 推荐(0)
摘要: Web:http://www.telerik.com/download/fiddler/fiddler4 阅读全文
posted @ 2015-11-25 14:06 ByronWu 阅读(83) 评论(0) 推荐(0)