idea常用操作

启动参数配置

位置:

配置文件路径
-Xms500m    # 初始内存
-Xmx1500m   # 最大内存
-XX:ReservedCodeCacheSize=240m  # 保留代码缓存大小,减少代码回收频率
-XX:+UseConcMarkSweepGC
-XX:SoftRefLRUPolicyMSPerMB=50
-ea
-XX:CICompilerCount=2
-Dsun.io.useCanonPrefixCache=false
-Djava.net.preferIPv4Stack=true
-Djdk.http.auth.tunneling.disabledSchemes=""
-XX:+HeapDumpOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow
-Djdk.attach.allowAttachSelf=true
-Dkotlinx.coroutines.debug=off
-Djdk.module.illegalAccess.silent=true
-XX:+UseCompressedOops
-Dfile.encoding=UTF-8

-XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log
-XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof

常用个性化配置

通过插件(Plugins)更换主题

[图片上传失败...(image-d06452-1588521080154)]

设置滚轮修改字体大小

勾选此设置后,用「control+鼠标滚轮」(mac用户用「command+鼠标滚轮」)控制代码字体大小

[图片上传失败...(image-f1bfdd-1588521080154)]

设置鼠标悬停提示

image-20200429132014121
  • Add unambiguous imports on the fly:自动导入不明确的结构
  • Optimize imports on the fly:自动帮我们优化导入的包

设置显示行号和方法间的分隔符

image-20200429132200850

忽略大小写提示

image-20200429132242243
  • IntelliJ IDEA 的代码提示和补充功能有一个特性:区分大小写。如上图标注所示,默认就是 First letter 区分大小写的。
  • 区分大小写的情况是这样的:比如我们在 Java 代码文件中输入 stringBuffer,IntelliJ IDEA 默认是不会帮我们提示或是代码补充的,但是如果我们输入StringBuffer 就可以进行代码提示和补充。
  • 如果想不区分大小写的话,不勾选Match case即可。

设置取消单行显示 tabs 的操作

image-20200429132422394

如上图标注所示,在打开很多文件的时候,IntelliJ IDEA 默认是把所有打开的文件名 Tab 单行显示的。但是我个人现在的习惯是使用多行,多行效率比单行高, 因为单行会隐藏超过界面部分 Tab,这样找文件不方便。

修改代码中注释的字体颜色

image-20200429132651507
  • Doc Comment – Text:修改文档注释的字体颜色
  • Block comment:修改多行注释的字体颜色
  • Line comment:修改当行注释的字体颜色

修改类头的文档注释信息

image-20200429132900457
/**
@author Yowai_zhao
@create
${YEAR}-${MONTH}-${DAY}
${TIME}
*/

常用的官方预设变量

${PACKAGE_NAME} - the name of the target package where the new class or interface will be created. ${PROJECT_NAME} - the name of the current project.

${FILE_NAME} - the name of the PHP file that will be created.

${NAME} - the name of the new file which you specify in the New File dialog box during the file creation. ${USER} - the login name of the current user.

${DATE} - the current system date.

${TIME} - the current system time.

${YEAR} - the current year.

${MONTH} - the current month.

${DAY} - the current day of the month.

${HOUR} - the current hour.

${MINUTE} - the current minute.

${PRODUCT_NAME} - the name of the IDE in which the file will be created.

${MONTH_NAME_SHORT} - the first 3 letters of the month name. Example: Jan, Feb, etc. ${MONTH_NAME_FULL} - full name of a month. Example: January, February, etc.

设置代码水平或垂直显示

image-20200429133238641

鼠标悬停提示

image-20200429133612731

快捷键

快速返回到前一个编辑位置

  • command+[:后退
  • command+]:前进
快捷键 意义
command+[ 快速返回到前一个编辑位置
command+] 快速返回到后一个编辑位置
control+h 类继承关系
option+command+l 格式化代码
control+h 类的结构
shift+F6 批量修改方法名和变量名
command+N 快速生成构造器/getter/setter

模版

代码 意义
psvm/main public static void main(String[] args){}
sout System.out.println()
soutv System.out.println("num1 = " + num1)打印变量
xxx.sout
fori for (int i = 0; i < ; i++){}
itar 增强for循环
iter 增强for循环
xxx.for

你可能感兴趣的:(idea常用操作)