从Eclipse 到IDEA

起因

最近换工作,新公司用IDEA做开发,之前使用 win + Eclipse , 一下子切换到 mbp + IDEA 感觉很痛苦,手指完全不知落在什么键上。谨以此文做一个转变过程中的记录。

收集的一些比较好的学习文章:
IDEA官网从Eclipse 迁移到 IDEA
极客学院的一个教程

使用频率最高的快捷键

搜索

  • 全局搜索 shift * 2 (点两次shift键)

  • 类型搜索 command + O

  • 资源文件搜索 shift + command + O

  • 这个搜索会出现结果列表,啥都能搜 shirt + command + F

跳转

  • 转到定义(类型,方法) command + B

  • 转到实现 option + command + B

  • 后退前进 command + []

  • 找到下一个,指定文本后 command + G 反向则加 shirt

  • show in(将当前类在项目视图中展现) option + F1

修复

  • 代码格式化 option + command + L

  • 优化import ctrl + option + O

  • 删除当前行 command + delete

  • 快速定位错误 F2

  • 快速修复 option + enter

一些视图的展现

  • outline command + F12

  • 继承关系视图 ctrl + H

  • project视图 command + 1

  • 直接在里面使用终端 option + F12

  • 最大化当前窗口 shift + command + F12

编译,运行,Debug

  • 编译 command + F9

  • 运行 ctrl + R

  • 调试 ctrl + D

重构

  • 改名 shift + F6

  • 提取方法 option + command + m

  • 提取变量 option + command + v

操作撤销

  • 撤销 command + z

  • 恢复撤销 shift + command + z

    原文作者:Jacendfeng
    原文地址: https://segmentfault.com/a/1190000005788205
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞