1.支持重构,TDD, Debug J2EE应用和Flying Error提示的IDE a.重构:即使团队用的最多的只是Rename,Move,Extract Method等有限几个最基本的功能,但J2EE结构里牵一发动全身的事情太多了,重构会帮你把事情擦干净,形成依赖后,已不习惯靠编译器。 b.T...
分类:
其他好文 时间:
2015-01-09 19:01:50
阅读次数:
226
(defun iedit-symbol-in-defun () "Enter `iedit-mode' to rename the symbol in current function, or exit it." (interactive) (if iedit-mode (progn...
分类:
其他好文 时间:
2015-01-07 20:44:02
阅读次数:
161
#encoding=utf8import osimport shutil""" 目录操作"""#得到当前工作目录#print os.getcwd()#创建目录(只能是单级目录)#os.mkdir("../yu")#重命名目录#os.rename("../yu","../yu2")#删除目录(只...
分类:
编程语言 时间:
2015-01-06 17:02:09
阅读次数:
142
为什么说是完整呢?因为改名之后,你不会再看到任何有关于之前的项目名字。本文会把一个项目名叫“test233333333”改成“test”。1)打开项目:以上是目前的项目结构。2)选中项目设置并按下回车,输入新的项目名字:3)输入完后按回车,弹出改名前和改名后的文件对名,这时点击“Rename”:4)...
分类:
移动开发 时间:
2015-01-06 09:50:43
阅读次数:
195
一、认识多任务、多进程、单线程、多线程要认识多线程就要从操作系统的原理说起。以前古老的DOS操作系统(V 6.22)是单任务的,还没有线程的概念,系统在每次只能做一件事情。比如你在copy东西的时候不能rename文件名。为了提高系统的利用效率,采用批处理来批量执行任务。现在的操作系统都是多任务操作...
分类:
编程语言 时间:
2015-01-04 15:17:14
阅读次数:
284
1 自动匹配
按ESC键
2 重构
1 重命名函数和变量:右键名称,选择refactor(重构的意思),再选择rename(重命名)
2 #define 不可以rename,需要全局替换:(点击查找菜单,把find改成replace)
3 截屏
1 Command+shift+3:全屏截图,保存截图到桌面
2 Command+shift+4:鼠标选定区域截图,保存截图到桌面...
分类:
其他好文 时间:
2015-01-04 13:35:48
阅读次数:
151
ALTER TABLE:添加,修改,删除表的列,约束等表的定义。
查看列:desc 表名;
修改表名:alter table t_book rename to bbb;
添加列:alter table 表名 add column 列名 varchar(30);
删除列:alter table 表名 drop column 列名;
修改列名MySQL: alter table bbb ch...
分类:
数据库 时间:
2014-12-31 16:22:40
阅读次数:
200
With the Gradle copy task we can define renaming rules for the files that are copied. We use the rename() method of the copy task to define the naming...
分类:
其他好文 时间:
2014-12-27 20:17:35
阅读次数:
183
Migrating from Ant to Gradle is very easy with the importBuild method from AntBuilder. We only have to add this single line and reference our existing...
分类:
其他好文 时间:
2014-12-26 20:16:26
阅读次数:
358
import osimport rename = raw_input("please input the name: ")for dirpath, dirnames, filenames in os.walk(os.path.join('/home/xiao', name), True, None)...
分类:
其他好文 时间:
2014-12-26 16:20:56
阅读次数:
171