0%

对于 Java 中的常量的命名规则:所有字母的单词都是大写,如果有多个单词,那马使用下划线 _​ 连接。 ​public static final int AGE_OF_PERSION = 20;​ Java Collection ​ ​ ​ ​ ​ ​ ​

数组查找 public class ArraySearchTest { public static void main(String[] args) { int[] a = new int[]{1, 5, 6, 7, 10, 3, 9}; int value = 9; int result = search(a, 9); if (result > 0) { System.out.println("找到了,索引为

冒泡排序 思路: 比如:3,5,6,2,4,7 结果:2,3,4,5,6,7 public class BubbleSort { public static void main(String[] args) { int[] a = new int[]{3, 5, 6, 2, 4, 7}; for (int i = 0; i < a.length; i++) { System.out.print(a[i] + " "); }

包装类(Wrapper Class)。 针对原生数据类型的包装。 包装类(8 个)都位于 java.lang​ 包下。 java 中的 8 个包装类分别是:Byte,

一、前言 Oracle 12c 中新增加了可插入数据库的概念,即 PDB(Pluggable Database),允许一个容器数据库 ,即 CDB (Container Dat

创建用户 打开命令提示框输入以下内容 1.输入:sqlplus /nolog​ //进入oralce控制台 2.输入:conn /as sysdba​ //以管

查看数据库版本 -- 查看oracle版本 select * from product_component_version; 查看数据库列表 -- 查看数据库列表 select username as schema_name from sys.all_users order by username; 删除用户及对应数据 -- 删除用户以及下面的objec

下载地址: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html 整个过程下载可能会比较慢,最好是抓取下载链接,然后使用wget下载,例如 ​ [root@terwergreen opt]# wget https://download.oracle.com/otn/linux/oracle12c/122010/linuxx64_12201_database.zip?AuthParam=1552132547_497757efbab4cd9c91b5d9c3fde56635 --2019-03-09 19:55:16-- https://download.oracle.com/otn/linux/oracle12c/122010/linuxx64_12201_database.zip?AuthParam=1552132547_497757efbab4cd9c91b5d9c3fde56635 正在解析主机 download.oracle.com (download.oracle.com)... 104.127.201.249 正在连接 download.oracle.com (download.oracle.com)|104.127.201.249|:443... 已连接。

Java8知识体系 Java8新特性介绍 Lambda表达式介绍 使用Lambda表达式代替内部类 Lambda表达式的作用 外部迭代与内部迭代 Java La

字符串特性 ​String​​ 是常量,其对象一旦创建就无法改变。 当使用 +​​​ 拼接字符串时,会生成新的 String​​​ 对象,而不是向原有的 S