摘要:
全屏模式 Host (右边的 Ctrl) + F 无缝模式 Host (右边的 Ctrl) + L 阅读全文
摘要:
G git S screen 阅读全文
摘要:
git config --list List all the settings git can find at /etc/gitconfig, ~/.gitconfig, ~/.config/git/config or .git/config. git config --system --list 阅读全文
摘要:
修改 IP 和 Gateway esxcli network ip interface ipv4 set -i vmk0 -I 10.124.29.32 -N 255.255.255.0 -g 10.124.29.1 -t static 阅读全文
摘要:
1. Bash 概念 主要有 4 种 shell 语言,Bash 是其中一种。四种 shell 分别是: - bash (Bourne Again SHell) - csh (C SHell) - ksh (KornSHell) - zsh 2. Bash 变量 定义变量 VAR="Hello Wo 阅读全文
摘要:
1. Array 转 List public class Test { public static void main(String[] args) { List<String> stringA = Arrays.asList("hello", "world", "A"); String[] str 阅读全文
摘要:
List import java.util.List; 初始化 List<Integer> list = new ArrayList<Integer>();List<Integer> list = new ArrayList<>();for (int i = 0; i < 10; i++) { li 阅读全文
摘要:
JVM 即时编译器即时编译器 (Just In Time Compiler) 简称JIT JAVA程序最初是通过解释器 (Interpreter) 进行解释执行的,当 JVM 发现某个方法或代码块运行特别频繁的时候,就会认为这是“热点代码” (Hot Spot Code)。为了提高热点代码的执行效率 阅读全文