
IDE
lisiben
这个作者很懒,什么都没留下…
展开
-
Eclipse IntellijJ short cut
Eclipse IntelliJ IDEA DescriptionF4 ctrl+h show the type hierarchyctrl+alt+g ctrl+alt+F7 find usagesctrl+shift+u ctrl+f7 finds the usages in the same filealt+shift+r shift+F6 renamectrl+shif...原创 2017-07-17 10:16:18 · 283 阅读 · 0 评论 -
IDEA中Compile、Make、Build区别
在Java的集成开发环境中,比如Eclipse、IDEA中,有常常有三种与编译相关的选项Compile、Make、Build三个选项。这三个选项最基本的功能都是完成编译过程。但又有很大的区别,区别如下:1、Compile:只编译选定的目标,不管之前是否已经编译过。 2、Make:编译选定的目标,但是Make只编译上次编译变化过的文件,减少重复劳动,节省时间。(具体怎么检查未变化,这个就...原创 2017-08-24 13:47:08 · 5466 阅读 · 0 评论