<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom">
  <title>zhxiong</title>
  <id>http://pipe.b3log.org/blogs/zhxiong</id>
  <updated></updated>
  <subtitle>向阳生长，触碰流云。</subtitle>
  <link href="http://pipe.b3log.org/blogs/zhxiong"></link>
  <entry>
    <title>杂七杂八</title>
    <updated>2018-12-22T00:00:00+08:00</updated>
    <id>tag:pipe.b3log.org,2018-12-22:/blogs/zhxiong/articles/2018/12/22/1545483000691</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/12/22/1545483000691" rel="alternate"></link>
    <summary type="html">看完的电影闻香识女人 | 活着 | 杯酒人生 | 天才瑞普利 | 顽主 | 西西里的美丽传说 | 心迷宫 | 黑客帝国 | 彗星来的那一夜 | 三傻大闹宝莱坞 | 盗钥匙的方法 | 沉默的羔羊 | 霸王别姬 | 楚门的世界 | 被人嫌弃的松子的一生 | 暗花阅读完的书 Java 核心技术想好了再补充···品尝过的美食想好了再补充···</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>redis</title>
    <updated>2018-12-12T11:11:11+08:00</updated>
    <id>tag:pipe.b3log.org,2018-12-12:/blogs/zhxiong/articles/2018/12/12/1545481304345</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/12/12/1545481304345" rel="alternate"></link>
    <summary type="html">redis 简介为什么要用 redis/为什么要用缓存为什么要用 redis 而不用 map/guava 做缓存?redis 和 memcached 的区别 redis 常见数据结构以及使用场景分析 1.String2.Hash3.List4.Set5.SortedSetredis 设置过期时间 redis 内存淘汰机制（MySQL 里有 2000w 数据，Redis 中只存 20w 的数据，如何保证 Redis 中的数据都是热点数据？）red</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>JVM垃圾回收</title>
    <updated>2018-11-27T22:13:47+08:00</updated>
    <id>tag:pipe.b3log.org,2018-11-27:/blogs/zhxiong/articles/2018/11/27/1543328027429</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/11/27/1543328027429" rel="alternate"></link>
    <summary type="html">写在前面本节常见面试题：问题答案在文中都有提到如何判断对象是否死亡（两种方法）。简单的介绍一下强引用、软引用、弱引用、虚引用（虚引用与软引用和弱引用的区别、使用软引用能带来的好处）。如何判断一个常量是废弃常量如何判断一个类是无用的类垃圾收集有哪些算法，各自的特点？HotSpot 为什么要分为新生代和老年代？常见的垃圾回收器有那些？介绍一下 CMS,G1 收集器。MinorGc 和 FullGC 有什么不同呢？本</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>常见算法和加密算法</title>
    <updated>2018-11-05T18:41:44+08:00</updated>
    <id>tag:pipe.b3log.org,2018-11-05:/blogs/zhxiong/articles/2018/11/05/1541414504311</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/11/05/1541414504311" rel="alternate"></link>
    <summary type="html">本文主要对消息摘要算法和加密算法做了整理，包括 MD5、SHA、DES、AES、RSA 等，并且提供了相应算法的 Java 实现和测试。一消息摘要算法 1.简介：消息摘要算法的主要特征是加密过程不需要密钥，并且经过加密的数据无法被解密只有输入相同的明文数据经过相同的消息摘要算法才能得到相同的密文。消息摘要算法主要应用在“数字签名”领域，作为对明文的摘要算法。著名的摘要算法有 RSA 公司的 MD5 算法和 SHA-1 算</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>Java集合框架常见面试题总结</title>
    <updated>2018-11-04T18:14:29+08:00</updated>
    <id>tag:pipe.b3log.org,2018-11-04:/blogs/zhxiong/articles/2018/11/04/1541326468895</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/11/04/1541326468895" rel="alternate"></link>
    <summary type="html">List，Set,Map 三者的区别及总结 Arraylist 与 LinkedList 区别 ArrayList 与 Vector 区别（为什么要用 Arraylist 取代 Vector 呢？）HashMap 和 Hashtable 的区别 HashSet 和 HashMap 区别 HashMap 和 ConcurrentHashMap 的区别 HashSet 如何检查重复 comparable 和 comparator 的区别 Comparator 定制排</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>Java基础知识</title>
    <updated>2018-11-04T18:08:23+08:00</updated>
    <id>tag:pipe.b3log.org,2018-11-04:/blogs/zhxiong/articles/2018/11/04/1541326103355</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/11/04/1541326103355" rel="alternate"></link>
    <summary type="html">1.面向对象和面向过程的区别面向过程面向对象 2.Java 语言有哪些特点？3.什么是 JDK？什么是 JRE？什么是 JVM？三者之间的联系与区别 4.什么是字节码？采用字节码的最大好处是什么？先看下 java 中的编译器和解释器：采用字节码的好处：5.Java 和 C++ 的区别 6.什么是 Java 程序的主类？应用程序和小程序的主类有何不同？7.Java 应用程序与小程序之间有那些差别？8.字符型常量和字符串常量的区别 9</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>Spring 框架</title>
    <updated>2018-11-04T17:51:16+08:00</updated>
    <id>tag:pipe.b3log.org,2018-11-04:/blogs/zhxiong/articles/2018/11/04/1541325075587</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/articles/2018/11/04/1541325075587" rel="alternate"></link>
    <summary type="html">1、什么是 Spring 框架？Spring 框架有哪些主要模块？Spring 框架是一个为 Java 应用程序的开发提供了综合、广泛的基础性支持的 Java 平台。Spring 帮助开发者解决了开发中基础性的问题，使得开发人员可以专注于应用程序的开发。Spring 框架本身亦是按照设计模式精心打造，这使得我们可以在开发环境中安心的集成 Spring 框架，不必担心 Spring 是如何在后台进行工作的。Spring 框架至今已</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
  <entry>
    <title>世界，你好！</title>
    <updated>2018-10-09T17:10:48+08:00</updated>
    <id>tag:pipe.b3log.org,2018-10-09:/blogs/zhxiong/hello-world</id>
    <link href="http://pipe.b3log.org/blogs/zhxiong/hello-world" rel="alternate"></link>
    <summary type="html">欢迎使用 Pipe 博客平台。这是一篇自动生成的演示文章，编辑或者删除它，然后开始你的独立博客之旅！Pipe 博客平台是一个开源项目，如果你觉得它很赞，请到项目首页给颗星鼓励一下！</summary>
    <author>
      <name>zhxiong</name>
    </author>
  </entry>
</feed>