VsCode编写Java程序
个人感觉,微软出品,必属精品。vsCode在编写前台代码的时候拥有巨大的优势,笔者曾经用它写过vue相关的代码。真心方便。今天主要讲解下Java的编译和运行。如果当初写Java代码的话,个人还是推荐用VSCode,轻量,兼容性好,至于写服务器相关的部分没有研究过。具体可以参考:https://code.visualstudio.com/docs/java/java-webapp以下内容参考h...
个人感觉,微软出品,必属精品。
vsCode在编写前台代码的时候拥有巨大的优势,笔者曾经用它写过vue相关的代码。真心方便。今天主要讲解下Java的编译和运行。
如果单纯写Java代码的话,个人还是推荐用VSCode,轻量,兼容性好,至于写服务器相关的部分没有研究过。具体可以参考:https://code.visualstudio.com/docs/java/java-webapp
以下内容参考https://code.visualstudio.com/docs/java/java-tutorial
安装包下载
(1)Installer of Visual Studio Code for Java developers.
(2)Java Extension Pack,
代码
package burningTeng;
public class Test{
public static void main(String[] args){
System.out.println("Burning Teng");
}
}
快捷键
1、注释:
a) 单行注释:[ctrl+k,ctrl+c] 或 ctrl+/
b) 取消单行注释:[ctrl+k,ctrl+u] (按下ctrl不放,再按k + u)
c) 多行注释:[alt+shift+A]
d) 多行注释:/**
2、移动行:alt+up/down
3、显示/隐藏左侧目录栏 ctrl + b
4、复制当前行:shift + alt +up/down
5、删除当前行:shift + ctrl + k
6、控制台终端显示与隐藏:ctrl + ~
7、查找文件/安装vs code 插件地址:ctrl + p
8、代码格式化:shift + alt +f
9、新建一个窗口: ctrl + shift + n
10、行增加缩进: ctrl + [
11、行减少缩进: ctrl + ]
12、裁剪尾随空格(去掉一行的末尾那些没用的空格) : ctrl + shift + x
13、字体放大/缩小: ctrl + ( + 或 - )
14、拆分编辑器 :ctrl + 1/2/3
15、切换窗口: ctrl + shift + left/right
16、关闭编辑器窗口: ctrl + w
17、关闭所有窗口 : ctrl + k + w
18、切换全屏 :F11
19、自动换行: alt + z
20、显示git: ctrl + shift + g
21、全局查找文件:ctrl + p
22、显示相关插件的命令(如:git log):ctrl + shift + p
23、选中文字:shift + left / right / up / down
24、折叠代码: ctrl + k + 0-9 (0是完全折叠)
25、展开代码: ctrl + k + j (完全展开代码)
26、删除行 : ctrl + shift + k
27、快速切换主题:ctrl + k / ctrl + t
28、快速回到顶部 : ctrl + home
29、快速回到底部 : ctrl + end
30、格式化选定代码 :ctrl + k / ctrl +f
31、选中代码 : shift + 鼠标左键
32、多行同时添加内容(光标) :ctrl + alt + up/down
33、全局替换:ctrl + shift + h
34、当前文件替换:ctrl + h
35、打开最近打开的文件:ctrl + r
36、打开新的命令窗:ctrl + shift + c
VsCode小问题
vs Code默认不会自动保存(unbuntu上)。所以修改完文件一定要保存一下(ctrl+s)。否则你会迎来噩梦。比如当使用makefile编译文件的时候。
当然了这个是可以设置的。如下所示:
Build failed, do you want to continue?
Reason:
The error indicates your workspace has build errors. There are two kinds of build errors. One is compilation error for source code, the other is project error.
Try:
Open VS Code PROBLEMS View, and fix the errors there.
Run VS Code command “Java: Open Java language server log file”, search keyword build/building workspace to find more details for the build errors.
If still cannot find out what errors, then reference the language server troubleshooting paragraph to [2]update project configuration, and [3]clean workspace cache.
更多推荐
所有评论(0)