为什么使用函数:将一些重复的代码封装,方便以后的使用,直接调用即可。
先给一个例子:
// 函数返回整数类型
int addNumbers(int a, int b) { // 函数体 int sum a b; return sum; // 返回计算得到的和
}
返回值类型&…
事务
比如说将张三的银行账户拿出一千给李四,首先需要查询张三的账户余额,扣除1000,然后如果给李四加上1000的过程中出现异常会回滚事务,临时修改的数据会回复回去。
-- 1. 查询张三账户余额
select * from account where name …
如何在k8s的任意节点使用用kubectl
# 正常在node节点上是无法执行kubectl命令
[rootk8s-node-01 ~]# kubectl get pods
The connection to the server localhost:8080 was refused - did you specify the right host or port?1、将master节点中/etc/kubernetes/,admin.conf拷…