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
顺序语句 案例 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
类别 检查项 检查结果 代码 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
using System; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Loggi ...
分类:
Web程序 时间:
2021-02-25 11:54:20
阅读次数:
0
建立领域对象并在domain中建立一个index.ts用于组织文件。在index.ts中导出所有的领域对象。 1,新建project.service,加add方法。 import { Project } from './../domain'; import { HttpClient } from ' ...
分类:
其他好文 时间:
2021-02-23 14:30:02
阅读次数:
0
2.1 Simulink模块的组成要素 2.1.1 模块概述 2.1.2 Simulink模块的构成 2.1.3 Simulink模块的朝向 2.1.4 Simulink模块的属性及参数 2.1.5 Simulink模块的注解 2.1.6 Simulink模块的虚拟性 2.2 Simulink常用模 ...
分类:
其他好文 时间:
2021-02-22 12:31:37
阅读次数:
0