intelli

导航

 

2017年4月5日

摘要: 0. 概要1. 内部类的几种形式1.1 普通内部类class Outter1 { private String firstname = "outfirstname"; // 普通内部类 class Inner1 { private String na... 阅读全文
posted @ 2017-04-05 20:15 intelli 阅读(104) 评论(0) 推荐(0)
 
摘要: 0. 概要1. Multimap常用方法1.1 create方法// 用于创建一个一键多值的multimap集合 Multimap multimap = ArrayListMultimap.create(); 1.2 put方法// 往multimap集合中put元素 multi... 阅读全文
posted @ 2017-04-05 20:03 intelli 阅读(803) 评论(0) 推荐(0)
 

2016年5月12日

摘要: /** * 102. Binary Tree Level Order Traversal * * Problem Description: * Given a binary tree, return the level order traversal of its nodes' values... 阅读全文
posted @ 2016-05-12 12:52 intelli 阅读(99) 评论(0) 推荐(0)
 
摘要: /** * 100. Same Tree * * Problem Description: * Given two binary trees, write a function to check if they are equal or not. Two binary trees are co... 阅读全文
posted @ 2016-05-12 11:46 intelli 阅读(134) 评论(0) 推荐(0)
 
摘要: /** * 111.Minimum Depth of Binary Tree * * Problem Description: * Given a binary tree, find its minimum depth. * The minimum depth is the number of... 阅读全文
posted @ 2016-05-12 11:19 intelli 阅读(137) 评论(0) 推荐(0)
 

2016年4月24日

摘要: [last updated :2016/4/24] 未完成 0 1.饿汉式单例 public class Singleton { private static Singleton uniqueInstance = new Singleton(); private Singleton(... 阅读全文
posted @ 2016-04-24 23:35 intelli 阅读(195) 评论(0) 推荐(0)
 

2016年2月8日

摘要: [last updated :2016/2/8] 未完成 在上一讲(1. JVM运行时数据区)Topic 1中简略谈到本地方法栈。本文将通过以下几个话题来进一步讨论本地方法栈。 Topic 1. 本地方法栈的功能?Topic 2. 什么是本地方法?为什么要使用本地方法?Topi... 阅读全文
posted @ 2016-02-08 22:49 intelli 阅读(371) 评论(0) 推荐(0)
 

2016年2月5日

摘要: 0、前言 读完本文,你将了解到: 一、为什么说Jabalpur语言是跨平台的 二、Java虚拟机启动、加载类过程分析 三、类加载器有哪些?其组织结构是怎样的? 四、双亲加载模型的逻辑和底层代码实现是怎样的? 五、类加载器与Class 实例的关系 六、线程上下文加载器 一、为什么说J... 阅读全文
posted @ 2016-02-05 19:34 intelli 阅读(182) 评论(0) 推荐(0)
 
摘要: 转 http://blog.csdn.net/luanlouis/article/details/40043991 [last updated :2014/11/7] JVM运行时数据区(JVM Runtime Area)其实就是指JVM在运行期间,其对计算机内存空间的划分和分配。本... 阅读全文
posted @ 2016-02-05 19:02 intelli 阅读(130) 评论(0) 推荐(0)
 

2016年2月4日

摘要: 转 http://blog.csdn.net/luanlouis/article/details/39960815 [last updated:2014/11/27] NO1.常量池在class文件的什么位置? 我的上一篇文章《Java虚拟机原理图解》 1、class文件基本组织结... 阅读全文
posted @ 2016-02-04 15:37 intelli 阅读(191) 评论(0) 推荐(0)