Loading

摘要: Class Object java.lang.Object public class Object Class Object is the root of the class hierarchy. Every class has Object as a superclass. All objects 阅读全文
posted @ 2024-07-21 23:27 Duancf 阅读(14) 评论(0) 推荐(0)
摘要: SQL 阅读全文
posted @ 2024-07-21 22:55 Duancf 阅读(6) 评论(0) 推荐(0)
摘要: ArrayList ArrayList是List接口的实现类,它是支持根据需要而动态增长的数组。java中标准数组是定长的,在数组被创建之后,它们不能被加长或缩短。这就意味着在创建数组时需要知道数组的所需长度,但有时我们需要动态程序中获取数组长度。ArrayList就是为此而生的,但是它不是线程安全 阅读全文
posted @ 2024-07-21 22:33 Duancf 阅读(60) 评论(0) 推荐(0)