AS ShortCut

Ctrl+Alt+L reformat Code
Ctrl+shift+/ comment/uncomment lines and blocks(/**/)
Ctr+/ comment/uncoment current line or blocks(//)
Ctrl+D in the editor duplicates the selected block or the current line when no block is selected.

Ctrl+E (View | Recent Files) recently visited files.

itar..+Tab Live Templates

Ctrl+Space Basic Code Completion

Ctrl+Shift+Space Smart Completion

Ctrl+Shift+Enter Statement Completion(parentheses,brackets,braces...)

Ctrl+P brings up a list of valid parameters

Ctrl+F12 view the current file structure

Ctrl+N search for and navigate to a specific class in the project

Ctrl+Shift+N navigate to a file or folder

Ctrl+Shift+Alt+N navigate to a method or field by name

Ctrl+Shift+Backspace (Navigate | Last Edit Location) brings you back to the last place where you made changes in the code.

Ctrl+Shift+F7 (Edit | Find | Highlight Usages in File) to quickly highlight usages of some variable in the current file.

Ctrl+Shift+J joins two lines into one and removes unnecessary space to match your code style.

Ctrl+Shift+V to choose and insert recent clipboard contents into the text.

Alt+F7 find the pieces of code referencing the class, method, field, parameter, statement
Alt+Enter quick fix and show intention actions

F3 and Shift+F3 to navigate through highlighted usages. Esc to remove highlighting.

Code | Reformat Code to reformat code according to your code style preferences (File | Settings | Code Style).

Code | Optimize Imports to automatically optimize imports (remove unused imports, etc.). (File | Settings | Code Style | Imports).

Alt+Q (View | Context Info) to see the declaration of the current method without the need to scroll to it.

F2/Shift+F2 keys to jump between highlighted syntax errors.

Ctrl+Alt+↑ /Ctrl+Alt+↓ to jump between compiler error messages or search operation results.

Alt+↑ and Alt+↓ keys to quickly move between methods i

To skip warnings right click on the validation side bar / marker bar and choose Go to high priority problems only.

Ctrl+J to complete any valid Live Template abbreviation if you don‘t remember it.

Eclipse
F6 逐行追踪
F5 进入方法
F7 跳出方法
F8 下一个断点或结束debug
字典类map 方法put/get

时间: 2024-09-30 15:04:58

AS ShortCut的相关文章

jeecg 3.5.2 新版本4种首页风格 【经典风格,shortcut风格,ACE bootstrap风格,云桌面风格】

[1]经典风格: [2]Shortcut风格: [3]ACE bootsrap风格: [4]云桌面风格: [5]自定义图表 [6].系统监控

apple-touch-icon,shortcut icon和icon的区别

apple-touch-icon 可以了解到这是一个类似网站favicon的图标文件,用来在iphone和ipod上创建快捷键时使用. 这个文件应当是png格式,57x57像素大小,放在网站根目录之下.如果准备的文件不是57x57的话,它会自己缩放的. 在页面的head部分,用下面的格式表示. <link rel="apple-touch-icon" href="/apple-touch-icon.png"/> 语句一:<link rel=&quo

[转] Fix: Screen Clipping Shortcut In OneNote Not Working After Upgrading To Windows 8.1

RECOMMENDED: Click here to fix Windows errors and optimize system performance No doubt, OneNote is yet another useful component of Microsoft‘ productivity suite aka Office. Using OneNote, you can easily clip your immediate notes. For this to be worke

Android添加快捷方式(Shortcut)到手机桌面

Android添加快捷方式(Short)到手机桌面 权限 要在手机桌面上添加快捷方式,首先需要在manifest中添加权限. <!-- 添加快捷方式 --> <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> <!-- 移除快捷方式 --> <uses-permission android:name="com.andro

Tasker : Task / Shortcut Widgets

Task / Shortcut Widgets The standard way of running a Tasker task is by attaching it to a profile which performs it when the profile becomes active. However, tasks can be directly assigned to icons on the home screen called Widgets or Shortcuts. Stan

ubuntu terminal shortcut

Keyboard shortcuts Keyboard shortcuts are combinations of keys that allow you to perform actions, such as opening the settings dialog or accessing a feature inside Terminal quickly. These shortcuts can be modified to suit your preferences. To change

Xcode Custom Shortcut

edit file "/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources" add <key>Custom ShortCut</key> <dict> <key>Duplicate Line</key> <string>selectLine:, copy:, moveToEndOfLine:, insertNewline:,

Android-Launcher开发之ShortCut(1)

以下源码来自Launcher2.3的例子 1.默认每个应用的主Activity都会自带 <category android:name="android.intent.category.LAUNCHER" />,表示该应用安装到Launcher时点击打开该Activity <activity android:name="org.lean.MainActivity" android:label="@string/app_name"

安卓7.1 新特性Shortcut

介绍 Shortcut 是谷歌在API25提出来的 类似苹果3D touch 但是没有压力感应.在安卓中完全就是长按. 来看下效果吧: 是不是很赞? 那么请随本文一起学习吧 更新 新建项目 在你项目下的build.gradle下 以下目的很简单更新你编译工具 和指定项目版本 compileSdkVersion 25 buildToolsVersion "25.0.0" minSdkVersion 25 targetSdkVersion 25 更新platform-tools 到25 打

关于网页收藏夹图标shortcut icon和icon代码的区别(转载)

shortcut icon和icon代码之间究竟有何区别呢.下面介绍一下语句一:<link rel="shortcut icon" href="favicon.ico" />语句二<link rel="icon" href="animated_favicon.gif" type="image/gif" />备注:语句一 Shortcut Icon 就是在网址列前面出现的Icon问题: