IDEA的相关配置及快捷键设置

1、IDEA的主题设置

IDEA的相关配置及快捷键设置_第1张图片

2、IDEA的字体设置

一般一页显示30行代码最好。

IDEA的相关配置及快捷键设置_第2张图片

3、IDEA的背景色设置

IDEA的相关配置及快捷键设置_第3张图片

豆沙绿护眼色设置:R:204  G:238  B:200

IDEA的相关配置及快捷键设置_第4张图片

4、IDEA常用的快捷键

IDEA的相关配置及快捷键设置_第5张图片

package com.gangdan.speedkey;

public class speedkeyDemo {
    //写main回车就好了或写psvm
    public static void main(String[] args) {
        //写sout回车
        System.out.println("Hello World");
        //或写"Hello World".sout然后回车
        System.out.println("Hello World");


        System.out.println("Hello World");
        //Ctrl+D复制当前数据到下一行
        System.out.println("Hello World");
        System.out.println("Hello World");
        System.out.println("Hello World");
        //Ctrl+y删除所在行,但是建议用Ctrl+x,因为这两个按键离得比较近
        //撤销键Ctrl+z
        //Ctrl+Alt+L 格式化代码
        //Alt+Shift+↑ 向上移动代码
        //Alt+Shift+↓ 向下移动代码
        //Ctrl+/ , Ctrl+Shift+/ 对代码进行注释
    }
}

Java小白不足之处欢迎提出。

你可能感兴趣的:(Java,intellij-idea,java,ide)