<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
            <title type="text">开发启示录</title>
    <updated>2024-09-09T16:16:52+08:00</updated>
        <id>http://www.ciypt.com</id>
        <link rel="alternate" type="text/html" href="http://www.ciypt.com" />
        <link rel="self" type="application/atom+xml" href="http://www.ciypt.com/atom.xml" />
    <rights>Copyright © 2026, 开发启示录</rights>
    <generator uri="https://halo.run/" version="1.5.4">Halo</generator>
            <entry>
                <title><![CDATA[HashMap的几种遍历方法]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/hashmap-de-ji-zhong-bian-li-fang-fa" />
                <id>tag:http://www.ciypt.com,2022-07-11:hashmap-de-ji-zhong-bian-li-fang-fa</id>
                <published>2022-07-11T09:28:38+08:00</published>
                <updated>2024-09-09T16:16:26+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[HashMap 的遍历方法有很多种，不同的 JDK 版本有不同的写法，其中 JDK 8 就提供了 3 种 HashMap 的遍历方法，并且一举打破了之前遍历方法“很臃肿”的尴尬。1.JDK 8 之前的遍历JDK 8 之前主要使用 EntrySet 和 KeySet 进行遍历，具体实现代码如下。1.1]]>
                </content>
            </entry>
            <entry>
                <title><![CDATA[Java中的int和Integer]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/java中的int和integer" />
                <id>tag:http://www.ciypt.com,2022-07-04:java中的int和integer</id>
                <published>2022-07-04T09:25:14+08:00</published>
                <updated>2024-09-09T16:16:33+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[Java 是一种强数据类型的语言，因此所有的属性必须有一个数据类型。就像麦德龙超市一样，想要进去购物，先要有一个会员卡才行（刷卡入内）。​PS：Java 10 有了局部变量类型推导，可以使用 var 来替代某个具体的数据类型，但在字节码阶段，Java 的变量仍有着明确的数据类型，且局部变量类型推导有]]>
                </content>
            </entry>
            <entry>
                <title><![CDATA[Java的Stream流操作]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/java的stream流操作" />
                <id>tag:http://www.ciypt.com,2022-07-01:java的stream流操作</id>
                <published>2022-07-01T09:17:22+08:00</published>
                <updated>2022-07-12T09:18:11+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[在Java中，涉及到对数组、Collection等集合类中的元素进行操作的时候，通常会通过循环的方式进行逐个处理，或者使用Stream的方式进行处理。例如，现在有这么一个需求：从给定句子中返回单词长度大于5的单词列表，按长度倒序输出，最多返回3个在Java7及之前的代码中，我们会可以照如下的方式进行]]>
                </content>
            </entry>
            <entry>
                <title><![CDATA[ Java的 EXCEL 读写——EasyExcel 的方法封装]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/java-de-exceldu-xie-easyexcelde-fang-fa-feng-zhuang" />
                <id>tag:http://www.ciypt.com,2022-06-28:java-de-exceldu-xie-easyexcelde-fang-fa-feng-zhuang</id>
                <published>2022-06-28T09:04:19+08:00</published>
                <updated>2024-09-09T16:16:39+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[EasyExcelEasyExcel 的 github 地址： github.com/alibaba/eas…EasyExcel 的官方介绍：可以看到 EasyExcel 最大的特点就是使用内存少，当然现在它的功能还比较简单，能够面对的复杂场景比较少，不过基本的读写完全可以满足。一. 依赖首先是添加]]>
                </content>
            </entry>
            <entry>
                <title><![CDATA[数组与list互转]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/shu-zu-yu-list-hu-zhuan" />
                <id>tag:http://www.ciypt.com,2022-06-27:shu-zu-yu-list-hu-zhuan</id>
                <published>2022-06-27T20:40:28+08:00</published>
                <updated>2024-09-09T16:16:52+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[**数组转ListArray.asList**这个考题太简单了，直接使用Array.asList不就完事了么，比如public void ary2list() {    String[] ary = new String[]{ &quot;1&quot;, &quot;a&quot;};    Li]]>
                </content>
            </entry>
            <entry>
                <title><![CDATA[MyBatis Plus 联合查询]]></title>
                <link rel="alternate" type="text/html" href="http://www.ciypt.com/archives/mybatispluslian-he-cha-xun" />
                <id>tag:http://www.ciypt.com,2022-06-01:mybatispluslian-he-cha-xun</id>
                <published>2022-06-01T15:07:45+08:00</published>
                <updated>2022-06-28T23:24:31+08:00</updated>
                <author>
                    <name>开发启示录</name>
                    <uri>http://www.ciypt.com</uri>
                </author>
                <content type="html">
                        <![CDATA[mybatis-plus-join使用方法安装Mavencom.github.yulichangmybatis-plus-join1.2.4Gradleimplementation 'com.github.yulichang:mybatis-plus-join:1.2.4'或者clone代码到本地执]]>
                </content>
            </entry>
</feed>
