抱歉,您的浏览器无法访问本站

本页面需要浏览器支持(启用)JavaScript


了解详情 >

java注解与反射

注解注解可以让程序读取,格式@注解名(参数) 常用注解 @Override:重写的方法 @Deprecated:已经废弃的方法 @SuppressWarnings:镇压警告 元注解元注解负责注解其他注解 。java定义了4个标准meta-annotation类型,他们被用来提供对其他annotation类型作说明 @Target:表示这个注解可以注在什么地方:类、方法等 @Rete...

Maven 基本操作

基本操作each project should have a pom.xml that is the setting of maven.Add dependency. 1234567<dependencies> <dependency> <groupId>groupId</groupId> <artifactId>arti...

Spring Boot Note

Project that build with Maven Quick buile a Spring Boot projectUse your IDE and new a project with Spring Initializer Some basic operationsCreat an excutable jarTo create an excutable jar we neen ...

HashMap原理

基本hashmap有数组+链表组成 基于红黑树的hashmap就是当链表达到一定长度时把链表变成红黑树 向map中put元素,如果key重复,会覆盖并把老的元素返回出来 12345678910| array | 1 | 2 | ... | N ||-------|---|---|-----|---| | | | | | | | | |...