目录
初始操作
1.设置显示常见的视图
2.工程界面展示
3.查看项目配置
1.Appearance & Behavior
1.1 设置主题
1.2 设置窗体及菜单的字体及字体大小 (可忽略)
1.4 补充:通过插件(plugins)更换主题
2. Editor - General
2.1 设置鼠标滚轮修改字体大小(可忽略)
2.2 设置鼠标悬浮提示
2.3 设置自动导包功能
2.4 设置显示行号和方法间的分隔符
2.5 忽略大小写提示
2.6 设置取消单行显示 tabs 的操作
3. Editor – Font
3.1 设置默认的字体、字体大小、字体行间距
4. Editor – Color Scheme
4.1 修改当前主题的字体、字体大小、字体行间距(可忽略)
4.3 修改代码中注释的字体颜色
5. Editor – File and Code Templates
5.1 修改类头的文档注释信息
6. Editor – File Encodings
6.1 设置项目文件编码
7. Build,Execution,Deployment
7.1 设置自动编译
7.2设置快捷键(Keymap)
7.3通过快捷键功能修改快捷键设置
7.4.导入已有的设置.导入已有的设置
初始操作
1.设置显示常见的视图
调出工具条和按钮组
2.工程界面展示
➢
工程下的 src 类似于 Eclipse 下的 src 目录,用于存放代码
工程下的 .idea 和 project01.iml 文件都是 IDEA 工程特有的。类似于 Eclipse 工
程下的 .settings 、 .classpath 、 .project 等
3.查看项目配置
进入项目结构:
进入设置界面:
目录结构如下:
1.Appearance & Behavior
1.1 设置主题
1.2 设置窗体及菜单的字体及字体大小 (可忽略)
1.4 补充:通过插件(plugins)更换主题
喜欢黑色主题的话,还可以下载插件: Material Theme UI
点击按钮以后,在联网环境下搜索如下的插件-安装-重启 IDEA 即可
如果对安装的主题插件不满意,还可以找到此插件,进行卸载 – 重启 IDEA 即
可。
2. Editor - General
2.1 设置鼠标滚轮修改字体大小(可忽略)
我们可以勾选此设置后,增加 Ctrl + 鼠标滚轮 快捷键来控制代码字体大小显
示。
2.2 设置鼠标悬浮提示
2.3 设置自动导包功能
➢
Add unambiguous imports on the fly :自动导入不明确的结构
➢
Optimize imports on the fly :自动帮我们优化导入的包
2.4 设置显示行号和方法间的分隔符
➢
如上图红圈所示,可以勾选 Show line numbers :显示行数。我建议一般这个
要勾选上。
➢
如上图红圈所示,可以勾选 Show method separators : 显示方法分隔线。这
种线有助于我们区分开方法,所以建议勾选上。
2.5 忽略大小写提示
➢
IntelliJ IDEA 的代码提示和补充功能有一个特性:区分大小写。如上图标注所
示,默认就是 First letter 区分大小写的。
➢
区分大小写的情况是这样的:比如我们在 Java 代码文件中输入 stringBuffer ,
IntelliJ IDEA 默认是不会帮我们提示或是代码补充的,但是如果我们输入
StringBuffer 就可以进行代码提示和补充。
➢
如果想不区分大小写的话,改为 None 选项即可。
2.6 设置取消单行显示 tabs 的操作
如上图标注所示,在打开很多文件的时候, IntelliJ IDEA 默认是把所有打开的文
件名 Tab 单行显示的。但是我个人现在的习惯是使用多行,多行效率比单行高,
因为单行会隐藏超过界面部分 Tab ,这样找文件不方便。
3. Editor – Font
3.1 设置默认的字体、字体大小、字体行间距
4. Editor – Color Scheme
4.1 修改当前主题的字体、字体大小、字体行间距(可忽略)
如果当前主题不希望使用默认字体、字体大小、字体行间距,还可以单独设置:
4.3 修改代码中注释的字体颜色
➢
Doc Comment – Text :修改文档注释的字体颜色
➢
Block comment :修改多行注释的字体颜色
➢
Line comment :修改单行注释的字体颜色
5. Editor – File and Code Templates
5.1 修改类头的文档注释信息
/**
@author shkstart
@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.
6. Editor – File Encodings
6.1 设置项目文件编码
说明: Transparent native-to-ascii conversion 主要用于转换 ascii ,一般都要勾选,
不然 Properties 文件中的注释显示的都不会是中文
. Build,Execution,Deployment
7.1 设置自动编译
7.2设置快捷键(Keymap)
7.3通过快捷键功能修改快捷键设置
7.4.导入已有的设置.导入已有的设置