- 博客(14)
- 收藏
- 关注
原创 SpringBoot杂记
启动入口@SpringBootApplicationpublic class XlcqqApplication { public static void main(String[] args) { SpringApplication.run(XlcqqApplication.class, args); }}整个项目将从SpringApplication.run()这个关键...
2019-03-10 01:21:14 147
原创 试试CSDN还需要审核吗
百度为您找到相关结果约12,000,000个为您推荐:csdn博客手机客户端csdn博客是什么csdn博客下载csdn论坛csdn博客登录csdn下载CSDN博客-专业IT技术发表平台官网写博客 发Chat 登录注册 我的博客 消息(3) 设置 反馈 帮助 退出...CSDN资讯 02月21日 运营精选 6 6286 阅读量 深度学习大神都推荐入门必须...blog.csdn.net/ - 百度...
2018-03-05 11:17:40 456
原创 JAVA基础知识之Queue集合
Queue接口PriorityQueue类Deque与ArrayDequeLinkedList各种线性表性能分析Queue接口Queue用来模拟队列这种数据结构,遵循先进先出原则(FIFO)。Queue接口中定义了以下通用方法,remove(), element():获取队头元素,remove(), poll(), peek():获取队头元素;offer(Object obj):队尾插
2016-10-30 20:29:52 3307
原创 JAVA基础知识之List集合
List接口和ListIterator接口介绍List集合新增方法List集合判断元素重复的标准ListIteratorList.ArrayList和List.Vector固定长度的ListList接口和ListIterator接口介绍List是一种元素有序,可重复的集合。默认是按元素插入顺序排序。可以像数组一样按照索引来访问元素。因此List接口提供了除Collect
2016-10-30 12:43:48 395
原创 JAVA基础知识之Set集合
Set集合的基本特征是不记录添加顺序,不允许元素重复(想想是为什么)。最常用的实现类是HashSet.本文将要介绍以下内容HashSet类HashSe的特征HashSet的equals和hashCodeLinkedHashSet的特征TreeSet的特征EnumSet的特征HashSet类HashSet类直接实现了Set接口, 其底层其实是包装了一个HashMa
2016-10-28 23:22:11 22497 2
原创 Java基础知识之集合(容器)简介
JAVA的集合体系,主要由Collection接口,Map接口,Iterator接口和操作集合的工具类Collections组成。其中的Iterator只是一个迭代器,真正的容器则派生自Collection和Map。Collection是一个根接口,它没有直接的实现类,但是它有三个字接口分别是Set,Queue和List。Set接口是一种无序,元素不可重复的集合(否则无法区分元素),Set
2016-10-27 22:08:40 564
原创 view class source code with JAD plugin in Eclipse
The default class viewer doesn't decompile the class file so you cannot open and check the source code, you may down third part App to do that while it is not convenient for debugging. The JAD plugin
2016-10-24 23:25:42 278
原创 Java fundamentals of basic IO
IO is a problem difficult to handle in various of systems because it always becomes a bottleneck in data transfer. in this section, I will introduce some Java classes for two categories of data trans
2016-10-21 20:57:09 333
原创 SecureCRT issue "Could not open clipboard: Assess is denied" (无法打开粘贴板:访问被拒绝)
I got an issue when copying some line/word (actually just select the context ) in the Linux terminal via SecureCRT, error box popped up with message "Could not open clipboard: Assess is denied" as bl
2016-10-19 16:42:31 15353 5
原创 JAVA fundamentals of exception handling mechanism
Agendawhat is an exception and error
2016-09-22 01:45:37 475
原创 JAVA基础知识之数据类型
JAVA的数据类型知识点主要包括基本数据类型,包装类,字符串类(String,StringBuffer, StringBuilder区别和用法),数组,数据类型转换等等,暂时只想到这么多,后面会再补充。1.基本数据类型重点是JAVA变量分为原始变量和包装变量,另外变量初始化时要注意变量类型能表示的范围以及精度的损失。各种包装类字符串类数组数据类型转换
2016-09-07 22:01:13 591
原创 Java基础知识点
以下10点为JAVA 基础知识,后面将足以总结和完善以备面试数据类型 (包装类,字符串,数组)异常处理Java IO和NIO数据结构 (集合和容器 )多线程(并发)网络通信(协议)面向对象JVM(内存分布,垃圾回收,类加载机制,反射)JDK源码JAVA常用包(string,java.concurrent,java.lang ...)附录,JAVA其他知识点JAV
2016-09-06 00:59:48 309
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人