码迷,mamicode.com
首页 >  
搜索关键字:extract    ( 966个结果
代码简洁之二:函数只做一件事儿
函数应该做一件事。做好这件事。只做这一件事。所以我们简化代码的一个简单方式就是不断拆分函数(Extract Method),一直拆分,拆分到不能再分出一个函数为止。拆函数的过程就是一个概括目的、步骤,提取抽象层次动名词的过程。不要做只是解释代码的简单概括,要让函数中的语句处于一个相同抽象层次,如果是...
分类:其他好文   时间:2016-01-02 18:27:59    阅读次数:116
Linux压缩与解压缩命令详解
简介:常用的压缩命令有gzip、bzip2、tar 提示:gzip与bzip2工具不可以对目录做打包压缩操作,gzip与bzip2解压都是用-d参数(decompress=uncompress)tar命令详解:用法:tar模式【选项】【路径】...模式:-c创建打包文件-delete-r--append-t--list内容-x--extract选项:-C--di..
分类:系统相关   时间:2015-12-26 23:49:06    阅读次数:399
PostgreSQL and bloat
Thebucardoproject has released itsnagios plugins for PostgreSQLand we can extract from them this nice view in order to check for table and indexbloati...
分类:数据库   时间:2015-12-23 00:29:16    阅读次数:386
重新组织函数
提炼函数(extract method)内联函数(inline method)内联临时变量(inline temp)以查询取代临时变量(replace temp with query)引入解释性变量(introduce explaining variable)分解临时变量(split tempora...
分类:其他好文   时间:2015-12-16 12:20:14    阅读次数:153
phonon dispersion spectra VASP 5.3.3 + phonopy 1.10
1. Installation of phonopy ubuntu12.04 + python3.5.0 (1) python 3.5.0 extract the pack, and then, cd Python-3.5.0/sudo ./configure --prefix=/o...
分类:Web程序   时间:2015-12-02 20:49:27    阅读次数:597
PHP求周岁
functiongetAge($birthday){$age=0;$year=$month=$day=0;if(is_array($birthday)){extract($birthday);}else{if(strpos($birthday,‘-‘)!==false){list($year,$month,$day)=explode(‘-‘,$birthday);$day=substr($day,0,2);}}$age=date(‘Y‘)-$year;if(date(‘m‘)<$month||(date..
分类:Web程序   时间:2015-12-02 18:42:59    阅读次数:146
第一次作业
#include #include #include #include using namespace std;using Eigen::MatrixXd;MatrixXd extract(char str[]){ MatrixXd p(1,2); int...
分类:其他好文   时间:2015-12-01 00:11:52    阅读次数:190
codeforce 600A - Extract Numbers
学习string 1 #include 2 #define eps 1e-8 3 #define M_PI 3.141592653589793 4 const int N = 100005; 5 using namespace std; 6 7 string st; 8 vectorv1,v2;.....
分类:其他好文   时间:2015-11-28 12:01:24    阅读次数:148
http://blog.rainy.im/2015/11/25/extract-color-themes-from-images/
许多从自然场景中拍摄的图像,其色彩分布上会给人一种和谐、一致的感觉;反过来,在许多界面设计应用中,我们也希望选择的颜色可以达到这样的效果,但对一般人来说却并不那么容易,这属于色彩心理学的范畴(当然不是指某些伪神棍所谓的那种)。从彩色图像中提取其中的主题颜色,不仅可以用于色彩设计(参考网站:Desig...
分类:Web程序   时间:2015-11-27 12:49:34    阅读次数:225
kali linux 2.0安装sublime text 2
参考原文:http://www.codeproject.com/Articles/582849/InstallingplusSublimeplusTextplus-plusonplusLinuxp第一种方法:Download the Sublime Text 2 & Extract it:32位:$...
分类:系统相关   时间:2015-11-18 19:39:36    阅读次数:475
966条   上一页 1 ... 75 76 77 78 79 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!