BookNote: Refactoring Improving the Design of Existing Code From "Refactoring Improving the Design of Existing Code" by Martin Flower. <! TOC "BookNot ...
分类:
其他好文 时间:
2018-02-07 19:26:36
阅读次数:
184
In this lesson we'll look at React PowerPlug's <List /> component by refactoring a normal class component with state and handlers to a functional comp ...
分类:
其他好文 时间:
2018-01-31 11:19:04
阅读次数:
157
Example / Note 为什么要 Extract Method?主要体现在“可读性”和“代码复用”上: Extract Method 的手段: ...
分类:
其他好文 时间:
2018-01-14 22:38:24
阅读次数:
189
This lesson takes the concept of render props and migrates it over to streaming props by keeping the same example and simple refactoring the Togglecom ...
分类:
Web程序 时间:
2017-12-28 12:00:49
阅读次数:
167
第四章 Refactoring Code The solutions you develop in Android Studio will not always follow a straight path from design to finish. To be an effective Andr ...
分类:
移动开发 时间:
2017-12-17 13:21:09
阅读次数:
388
Learn Android Studio 汉化教程 Learn Android Studio 汉化教程 By now you are familiar with the basics of creating a new project, programming, and refactoring.It ...
分类:
移动开发 时间:
2017-12-17 13:16:04
阅读次数:
216
《20171005-构建之法:现代软件工程-阅读笔记》 1、软件团队的模式:主治医师模式、明星模式、社区模式、业余剧团模式、秘密团队、特工团队、交响乐团模式、爵士乐模式、功能团队模式和官僚模式 2、代码重构(code refactoring):特点:持续偏纠和改进软件设计; 帮助发现隐藏的代码缺陷; ...
分类:
其他好文 时间:
2017-10-05 18:26:17
阅读次数:
154
1、软件团队的模式:主治医师模式、明星模式、社区模式、业余剧团模式、秘密团队、特工团队、交响乐团模式、爵士乐模式、功能团队模式和官僚模式。 2、敏捷开发:特点: 个体和交互胜过过程和工具,可以工作的软件胜过面面俱到的文档,响应变化胜过遵循计划。 3、代码重构(code refactoring):特点 ...
分类:
其他好文 时间:
2017-10-05 13:05:21
阅读次数:
137
一、创建小程序项目 mock.js 从 https://github.com/nuysoft/Mock/blob/refactoring/dist/mock.js 下载 api.js:配置模拟数据和后台接口数据,通过 DEBUG = true;//切换数据入口 index.js页面 index.wx ...
分类:
微信 时间:
2017-09-25 13:20:05
阅读次数:
356
题意:给定 n 个区间,让你进行合并,问你最后的区间是,如果是空集,输出 false 如果区间是是 [-32768,32767] ,则是true。 析:进行区间合并,要注意,如果是 x >= 0 && x <= 32767 那么输出是 x >= 0,在这地方,真是错死了。。。。。。后来看了数据才知道 ...
分类:
其他好文 时间:
2017-08-29 21:51:50
阅读次数:
203