摘要: 10.1 什么是JDBC? JDBC(Java Data Base Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组成。JDBC提供了一种基准,据此可以构建更高级的工具和接口,使数据库开 阅读全文
posted @ 2021-07-09 21:42 Coder_Cui 阅读(919) 评论(0) 推荐(0) 编辑
摘要: 1、Stack(栈) 在java8中,Stack的官方文档介绍如下: public class Stack<E> extends Vector<E> The Stack class represents a last-in-first-out (LIFO) stack of objects.It e 阅读全文
posted @ 2021-07-09 16:59 Coder_Cui 阅读(2390) 评论(0) 推荐(1) 编辑
摘要: 求代码最终的输出结果:str、a、p、array public class Test { public static void main(String[] args) { String str = "hello"; Integer a = 1; Point p = new Point(1,2); P 阅读全文
posted @ 2021-07-09 15:16 Coder_Cui 阅读(106) 评论(0) 推荐(0) 编辑