html
-
mysql术语通解
数据库—文件夹 表—文件 字段—表头 索引—目录 约束—限制 键—序号 内连接—向右关联…
-
redis配置文件说明
# Redis配置文件样例 # Note on units: when memory size is needed, it is possible to specifiy# it …
-
java 并发编程规约
Rule 1. 【强制】创建线程或线程池时请指定有意义的线程名称,方便出错时回溯 1)创建单条线程时直接指定线程名称“`Thread t = new Thread();…
-
linux 中sed命令删除匹配字符之后的若干行
001、 (base) [email protected]:/home/test2# cat a.txt ## 测试数据 1 2 3 k 4 5 6 7 k 8 9 …
-
ubuntu 22.04安装多个gcc
sudo apt install gcc-9 g++-9 sudo update-alternatives –install /usr/bin/gcc gcc /usr/bin/…
-
linux 中sed命令如何同时将多个字符替换为指定字符
001、 (base) [email protected]:/home/test2# cat a.txt ## 测试数据 e f k s g d a c m s e …
-
vue学习之——自定义指令(全局)
main.js中定义: 定义指令的函数为:directive() 指令名称:第一个参数 ——fontcolor 被绑定的元素:回调函数的第一个参数̵…
-
C++ beginner(2)- variable
initialization int x{}; // x is filled with zeroes, so x == 0 int x{123}; int x(123); int …
-
Java帝国的诞生
Java帝国的诞生 C&C++ 1972年C诞生 – 贴近硬件、运行极快、效率极高。 – 操作系统、编译器、数据库、网络系统等 – 指针和内存管理 1982年C++诞生 面…
-
SQL的DDL,DML,DCL和DQL解释
DDL(defination): 数据定义语言,定义数据库对象:数据库、表、列 常用的 create/alter/drop1.数据库创建数据库 create database db…