<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Eric9901的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/Eric9901</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; Eric9901]]></copyright><item><title><![CDATA[Nor flash和Nand flash]]></title><link>https://blog.csdn.net/Eric9901/article/details/138811880</link><guid>https://blog.csdn.net/Eric9901/article/details/138811880</guid><author>Eric9901</author><pubDate>Mon, 13 May 2024 17:31:33 +0800</pubDate><description><![CDATA[在数字化时代的今天，数据的存储和管理变得越来越重要。各种各样的存储技术应运而生，以满足不同的使用场景和需求。其中，Flash存储芯片以其非易失性、可擦写性和可编程性等优势，占据了重要地位。本博客将详细介绍Flash存储芯片中的NOR Flash、NAND Flash、UFS和eMMC，分析它们的用途、优缺点，并对其进行比较。1.1 用途特性NOR Flash是可编程存储器的一种，因其具有直接运行应用程序的能力而广受欢迎，由于存储容量较小，一般只有几MB~几十MB，因此适合存储较小的程序和数据。]]></description><category></category></item><item><title><![CDATA[形参的大小]]></title><link>https://blog.csdn.net/Eric9901/article/details/138624514</link><guid>https://blog.csdn.net/Eric9901/article/details/138624514</guid><author>Eric9901</author><pubDate>Thu, 09 May 2024 18:05:41 +0800</pubDate><description><![CDATA[我们都知道函数的形参如果是指针的话就只有四个字节，但是如何是数组的形式呢，由此可见，就算是数组的形式，形参也只有四个字节，再内存中也只是个指针。]]></description><category></category></item><item><title><![CDATA[内存溢出与内存泄漏：定义、区别与解决方案]]></title><link>https://blog.csdn.net/Eric9901/article/details/137764799</link><guid>https://blog.csdn.net/Eric9901/article/details/137764799</guid><author>Eric9901</author><pubDate>Mon, 15 Apr 2024 08:44:38 +0800</pubDate><description><![CDATA[解决方案：解决内存泄漏问题的方法包括：（1）使用智能指针等RAII（Resource Acquisition Is Initialization）技术，以确保在对象生命周期结束时自动释放内存；在实际开发中，程序员应该关注代码的内存使用情况，并采取适当的预防措施来避免这两种问题的发生。解决方案：解决内存溢出问题的方法包括：（1）优化程序算法和数据结构，以减少内存使用；原因：内存溢出的主要原因包括：（1）程序设计错误，如无限递归、过大的数据结构等；在严重的情况下，它还可能影响其他正在运行的程序或服务。]]></description><category></category></item><item><title><![CDATA[后插法创建单链表]]></title><link>https://blog.csdn.net/Eric9901/article/details/137572868</link><guid>https://blog.csdn.net/Eric9901/article/details/137572868</guid><author>Eric9901</author><pubDate>Tue, 09 Apr 2024 23:55:27 +0800</pubDate><description><![CDATA[链表]]></description><category></category></item><item><title><![CDATA[二维数组的坑]]></title><link>https://blog.csdn.net/Eric9901/article/details/137563112</link><guid>https://blog.csdn.net/Eric9901/article/details/137563112</guid><author>Eric9901</author><pubDate>Tue, 09 Apr 2024 19:07:29 +0800</pubDate><description><![CDATA[二维数组]]></description><category></category></item><item><title><![CDATA[对数组名和数组首元素的理解]]></title><link>https://blog.csdn.net/Eric9901/article/details/136762685</link><guid>https://blog.csdn.net/Eric9901/article/details/136762685</guid><author>Eric9901</author><pubDate>Sat, 16 Mar 2024 14:51:16 +0800</pubDate><description><![CDATA[]]></description><category></category></item><item><title><![CDATA[进程的地址空间分布]]></title><link>https://blog.csdn.net/Eric9901/article/details/135775194</link><guid>https://blog.csdn.net/Eric9901/article/details/135775194</guid><author>Eric9901</author><pubDate>Tue, 23 Jan 2024 16:34:26 +0800</pubDate><description><![CDATA[文本段存储二进制代码，常字符串，数据段保存已初始化的静态变量，全局变量。bss段保存未初始化的的静态变量。栈存放局部变量，函数，const变量。]]></description><category></category></item><item><title><![CDATA[函数指针指针函数数组指针指针数组]]></title><link>https://blog.csdn.net/Eric9901/article/details/135704403</link><guid>https://blog.csdn.net/Eric9901/article/details/135704403</guid><author>Eric9901</author><pubDate>Fri, 19 Jan 2024 18:20:42 +0800</pubDate><description><![CDATA[数组指针和指针数组在本质上的区别便是优先级关系，我们需要注意到底是指针的优先级高还是数组的优先级高，如果数组的优先级高是指针数组，如果指针的优先级高便是数组指针。//这里定义了一个指针数组arr，数组有三个元素，每个元素都是一个char*指针,每个指针保存着每个字符串首地址。函数指针：int (*fun)(int x,int y);//这里定义的是一个数组指针，指针存放着数组首元素的地址。指针函数：int* fun(int x,int y);总结起来就是目的是谁，便让谁的优先级高就可以了。]]></description><category></category></item><item><title><![CDATA[Linux环境中编译出现段错误（segmentation）]]></title><link>https://blog.csdn.net/Eric9901/article/details/134855863</link><guid>https://blog.csdn.net/Eric9901/article/details/134855863</guid><author>Eric9901</author><pubDate>Thu, 07 Dec 2023 16:13:05 +0800</pubDate><description><![CDATA[段错误]]></description><category></category></item><item><title><![CDATA[定义和声明]]></title><link>https://blog.csdn.net/Eric9901/article/details/129147031</link><guid>https://blog.csdn.net/Eric9901/article/details/129147031</guid><author>Eric9901</author><pubDate>Tue, 21 Feb 2023 18:24:03 +0800</pubDate><description><![CDATA[C/C++ 函数的声明与定义]]></description><category></category></item></channel></rss>