Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch.Build started 2021/3/17 0:22:07.Project "D: ...
分类:
编程语言 时间:
2021-03-17 15:05:07
阅读次数:
0
java 关键字 数据类型:boolean、int、long、short、byte、float、double、char、class、interface。 流程控制:if、else、do、while、for、switch、case、default、break、continue、return、try、c ...
分类:
编程语言 时间:
2021-03-17 14:43:39
阅读次数:
0
BeanFactoryPostProcessor 自定义spring进行注入 import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPos ...
分类:
其他好文 时间:
2021-03-15 11:27:52
阅读次数:
0
顺序语句 案例 package com.bk201.struct; public class ShunXuDemo { public static void main(String[] args) { System.out.println("H"); System.out.println("e"); ...
分类:
其他好文 时间:
2021-03-10 13:13:09
阅读次数:
0
1. 安装Docker,详细请看安装教程。若已安装,请看 2. 2. 拉取 Zookeeper 镜像 docker pull zookeeper 3. Zookeeper 单节点启动 docker run --name zk1 -d zookeeper 4. 修改镜像中 Zookeeper 的配置 ...
分类:
其他好文 时间:
2021-03-10 13:00:14
阅读次数:
0
类别 检查项 检查结果 代码 Readability 通过 Duplicated Code 通过 Hard Coding 通过 Long Method(100行) 通过 Long Parameter List(最多4个) 通过 Large Class 通过 Switch Statement 通过 L ...
分类:
其他好文 时间:
2021-03-08 14:04:45
阅读次数:
0
if单选择结构 if双选择结构 ifif多选择结构 public class IfDemo03 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.printl ...
分类:
其他好文 时间:
2021-03-08 14:03:15
阅读次数:
0
break 和 continue break在任何循环语句的主体部分,均可以用于控制循环的流程。用于强行退出循环,不执行循环中剩余的语句。 也可以用于switch语句中 package com.kuang.struct; public class BreakDemo01 { public stati ...
分类:
其他好文 时间:
2021-03-03 12:26:35
阅读次数:
0
第三章- switch语句和循环 1.1 分支语句switch语句 格式 switch (表达式) { case 1: 语句体1; break; case 2: 语句体2; break; ... default: 语句体n+1; break; } 执行流程: 首先计算出表达式的值 其次,和case依 ...
分类:
其他好文 时间:
2021-03-01 12:59:14
阅读次数:
0
//设置千分位方法 format (num) { if(num){ return (num+ '').replace(/(\d{1,3})(?=(\d{3})+(?:$|\.))/g,'$1,'); }else{ return "--" } }, // 接受数据,选择改变的字段 getdata(li ...
分类:
其他好文 时间:
2021-02-26 13:33:19
阅读次数:
0