12 2023 档案

架构基础
摘要:特点,本质 软件架构简介 抽象而言,架构就 是对系统中的实体以及实体之间的关系所进行的抽象描述, 是对物/信息的功能与形式元素之间的对应情况所做的分配, 是对元素之间的关系以及元素同周边环境之间的关系所做的定义; 软件架构的核心价值,即是控制系统的复杂性,将核心业务逻辑和技术细节的分离与解耦; 软件 阅读全文

posted @ 2023-12-25 09:46 anpeiyong 阅读(22) 评论(0) 推荐(0) 编辑

Timestamp
摘要:概述 A thin wrapper around <code>java.util.Date</code> that allows the JDBC API to identify this as an SQL <code>TIMESTAMP</code> value.It adds the abil 阅读全文

posted @ 2023-12-21 10:14 anpeiyong 阅读(50) 评论(0) 推荐(0) 编辑

Java8时间API
摘要:https://www.pdai.tech/md/java/java8/java8-localdatetime.html 阅读全文

posted @ 2023-12-20 18:38 anpeiyong 阅读(2) 评论(0) 推荐(0) 编辑

TimeZone
摘要:概述 <code>TimeZone</code> represents a time zone offset, and also figures out daylight savings. Typically, you get a <code>TimeZone</code> using <code> 阅读全文

posted @ 2023-12-20 17:04 anpeiyong 阅读(37) 评论(0) 推荐(0) 编辑

DateFormat&SimpleDateFormat
摘要:DateFormat 概述 {@code DateFormat} is an abstract class for date/time formatting subclasses which formats and parses dates or time in a language-indepen 阅读全文

posted @ 2023-12-20 15:48 anpeiyong 阅读(19) 评论(0) 推荐(0) 编辑

Date
摘要:概述 The class <code>Date</code> represents a specific instant in time, with millisecond precision. Date表示特定的时刻,以ms为单位; Prior to JDK1.1, the class <code 阅读全文

posted @ 2023-12-20 15:47 anpeiyong 阅读(15) 评论(0) 推荐(0) 编辑

Calendar
摘要:概述 The <code>Calendar</code> class is an abstract class that provides methods for converting between a specific instant in time and a set of {@link #f 阅读全文

posted @ 2023-12-20 15:46 anpeiyong 阅读(38) 评论(0) 推荐(0) 编辑

System
摘要:方法 数组相关 arraycopy Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination a 阅读全文

posted @ 2023-12-19 11:26 anpeiyong 阅读(14) 评论(0) 推荐(0) 编辑

Object---clone方法
摘要:概述 java.lang.Object#clone By convention, the returned object should be obtained by calling {@code super.clone}. If a class and all of its superclasses 阅读全文

posted @ 2023-12-12 17:38 anpeiyong 阅读(5) 评论(0) 推荐(0) 编辑

常量池_运行时常量池_字符串常量池
摘要:常量池 常量池是在编译期间由 Java 编译器生成的一个数据结构; 存储了 类或接口中的所有字面量和符号引用。 这些信息包括但不限于: 字符串字面量 整型、浮点型、字符型等基本类型的字面量 类和接口的全限定名 字段名和描述符 方法名和描述符 方法和字段的访问标志 每个类文件都包含一个常量池,它是 c 阅读全文

posted @ 2023-12-12 16:44 anpeiyong 阅读(26) 评论(0) 推荐(0) 编辑

常用指令
摘要:javap 作用: 查看Java class文件的详细信息; 用法: javap <options> <classes> 其中, 可能的选项包括: -help --help -? 输出此用法消息 -version 版本信息 -v -verbose 输出附加信息 -l 输出行号和本地变量表 -publ 阅读全文

posted @ 2023-12-12 15:02 anpeiyong 阅读(3) 评论(0) 推荐(0) 编辑

常见概念
摘要:虚方法与非虚方法 虚方法 面向对象编程中的一种概念; 它允许在继承关系中的子类重写(Override)父类的某个方法; 主要目的是实现多态性(Polymorphism),即允许不同的子类对象对同一消息作出不同的响应; 虚方法的主要特点和用途包括: 多态性:虚方法使多态成为可能,允许子类根据需要覆盖父 阅读全文

posted @ 2023-12-11 15:42 anpeiyong 阅读(39) 评论(0) 推荐(0) 编辑

JVM指令
摘要:pop Pop the top operand stack value 弹出 操作数 栈顶的值 astore_<n> Store reference into local variable aload_<n> Load reference from local variable getstatic 阅读全文

posted @ 2023-12-06 15:34 anpeiyong 阅读(1) 评论(0) 推荐(0) 编辑

异常机制
摘要:JVM如何处理异常? exception table 概念 方法的异常表 from :可能发生异常的起始点 to :可能发生异常的结束点 target :上述from和to之前发生异常后的异常处理者的位置 type :异常处理者处理的异常的类信息 什么时候被使用? 异常发生的时候 如何被使用? 1. 阅读全文

posted @ 2023-12-06 15:32 anpeiyong 阅读(10) 评论(0) 推荐(0) 编辑

Lombok
摘要:概述 https://www.pdai.tech/md/develop/package/dev-package-x-lombok.html 原理 核心之处就是 对于annotation的解析; jdk5引入的注解支持,允许在 编译时&运行时 对元数据 进行动态处理: 运行时解析: 运行时能够解析的注 阅读全文

posted @ 2023-12-04 19:27 anpeiyong 阅读(21) 评论(0) 推荐(0) 编辑

Annotation
摘要:概述 The common interface extended by all annotation types. Note that an interface that manually extends this one does not define an annotation type. Al 阅读全文

posted @ 2023-12-01 15:56 anpeiyong 阅读(48) 评论(0) 推荐(0) 编辑

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示