问题一:请问以下代码输出什么? int a = 0; for (int i = 0; i < 99; i++) { a = a++; } System.out.println(a); 答案是:0 问题二:请问以下代码输出什么? int b = 0; for (int i = 0; i < 99; i ...
分类:
其他好文 时间:
2021-01-01 12:17:57
阅读次数:
0
class HelloChina{ public static viod main(String[] args){ System.out.println("hello,world"); } } ...
分类:
编程语言 时间:
2021-01-01 12:02:08
阅读次数:
0
1. += *= 等等运算符,不改变变量类型 short s=10; s+=2; System.out.println(s); 编译通过,结果为12; short s=10; s=s+2; System.out.println(s); 编译不能通过,应改为 int i=s+2,因为s+2的结果值为i ...
分类:
编程语言 时间:
2021-01-01 11:52:41
阅读次数:
0
System System系统类,主要用于获取系统的属性数据和其他操作,构造方法私有的,所以无法创建该类的对象 其内部的成员变量和成员方法都是static的,所以也可以很方便的进行调用 方法名 说明 static void arraycopy(...) 复制数组 static long curren ...
分类:
编程语言 时间:
2020-12-31 12:53:11
阅读次数:
0
int a = new int [] {1,2,3} for (int x :a) { System.out.println(x); } ...
分类:
编程语言 时间:
2020-12-31 12:26:37
阅读次数:
0
Quartz是什么 Quartz是一个功能强大的开源任务调度库,几乎可以集成到任何Java应用程序中,无论是超小型的独立应用还是超大型电子商务系统。 它常用于企业级应用中: Driving Process Workflow:当新订单下达,可以安排一个30分钟内触发的任务,检查订单状态。 System ...
分类:
其他好文 时间:
2020-12-31 12:01:37
阅读次数:
0
案例: System.out.println(0.05+0.01); System.out.println(1.0+0.42); System.out.println(4.015*100); System.out.println(123.3/100); 在日常的开发中肯定会接触到价格金钱上的运算,这 ...
分类:
编程语言 时间:
2020-12-31 11:46:16
阅读次数:
0
参考于 https://www.cnblogs.com/axing/archive/2013/06/07/3123123.html 代码 using System; using System.Collections.Generic; using System.ComponentModel; usin ...
1. 关系型数据库介绍 1.1 数据结构模型 数据结构模型主要有: 层次模型 网状结构 关系模型 关系模型:二维关系:row,column 数据库管理系统:DBMS关系:Relational,RDBMS 1.2 RDBMS专业名词 常见的关系型数据库管理系统: MySQL:MySQL,MariaDB ...
分类:
数据库 时间:
2020-12-30 11:09:03
阅读次数:
0
Git工作原理 WorkSpace:本地工作区 Index:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 Git命令 git config # 查看配置信息 # --local:仓库级,--global:全局级,--system:系统级 $ git config <-- ...
分类:
其他好文 时间:
2020-12-30 11:01:38
阅读次数:
0