<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>编程经验分享</title>
    <link>https://www.xuehu96.com/</link>
    <description>Recent content on 编程经验分享</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Thu, 06 May 2021 10:30:57 +0800</lastBuildDate><atom:link href="https://www.xuehu96.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>【目录】C&#43;&#43;学习笔记</title>
      <link>https://www.xuehu96.com/post/cpp/</link>
      <pubDate>Thu, 06 May 2021 10:30:57 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/</guid>
      <description>《C++学习笔记》目录。 开始编写时间：2021年1月15日 结束编写时间：NULL 参考书籍：《C++ Primer 中文第5版》 C++的优点：可靠性，通用性</description>
    </item>
    
    <item>
      <title>STL容器</title>
      <link>https://www.xuehu96.com/post/cpp/stlcontainer/</link>
      <pubDate>Thu, 11 Feb 2021 11:47:00 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/stlcontainer/</guid>
      <description>Containers array 头文件：#include &amp;lt;&amp;gt; bitset 头文件：#include &amp;lt;bitset&amp;gt; 构造 1 2 3 std::bitset&amp;lt;16&amp;gt; foo; std::bitset&amp;lt;16&amp;gt; bar (0xfa2); std::bitset&amp;lt;16&amp;gt; baz (std::string(&amp;#34;0101111001&amp;#34;)); 访问bitset operator[] ：返回pos的位（bool）[不执行边</description>
    </item>
    
    <item>
      <title>C语言函数与线程池</title>
      <link>https://www.xuehu96.com/post/cpp/cfun/</link>
      <pubDate>Sat, 16 Jan 2021 19:05:31 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/cfun/</guid>
      <description>文件操作API 文件读写 fgetc fputc 按字符读写文件 fputs fgets 按行读写文件（读写配置） fread fwrite 按块读文件（大文件迁移） fprintf 格式化读写文件 文件控制 FILE *fopen(char *filename, char *type) 打开文件 返</description>
    </item>
    
    <item>
      <title>C语言内存/指针相关</title>
      <link>https://www.xuehu96.com/post/cpp/cmem/</link>
      <pubDate>Sat, 16 Jan 2021 17:59:11 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/cmem/</guid>
      <description>内存 数据类型&amp;ndash;更好的内存管理 数据类型：固定大小内存的别名 typedef 结构体的别名 typedef struct Student MyStudent 给指针起别名 typedef char * PCHAR 给变量起别名 typedef longlong mylong_t 注意： voi</description>
    </item>
    
    <item>
      <title>C语言流程控制</title>
      <link>https://www.xuehu96.com/post/cpp/embc/</link>
      <pubDate>Thu, 17 Sep 2020 20:23:39 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/embc/</guid>
      <description>1. C语言 标准入门C语言模板 特点： 单文件、人机交互或者计算、一般是有结束的 编程软件：vs devc++ gcc等等 1 2 3 4 5 6 7 #include &amp;lt;stdio.h&amp;gt; int main() { //执行的操作 return 0;</description>
    </item>
    
    <item>
      <title>Air724C_SDK</title>
      <link>https://www.xuehu96.com/post/air724csdk/</link>
      <pubDate>Tue, 08 Sep 2020 09:24:27 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/air724csdk/</guid>
      <description>在lua里调用CSDK里的函数步骤 首先需要在\app\elua\modules\include\ auxmods.h中声明模块名字和模块初始化</description>
    </item>
    
    <item>
      <title>10分钟学会Lua</title>
      <link>https://www.xuehu96.com/post/Lua/</link>
      <pubDate>Sun, 12 Jul 2020 17:31:26 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/Lua/</guid>
      <description>Lua是一个简单轻量的脚本语言，例子来自Lua官方的小例子，全部学会就会用啦 &amp;ndash; Example 1 &amp;ndash; Helloworld 用print就可以打印啦 1 2 3 4 5 6 7 8 9 -- Classic hello program. print(&amp;#34;helloworld&amp;#34;) --------</description>
    </item>
    
    <item>
      <title>正则表达式</title>
      <link>https://www.xuehu96.com/post/Regular/</link>
      <pubDate>Mon, 15 Jun 2020 19:36:52 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/Regular/</guid>
      <description>正则表达式 语法规则 行定位符 &amp;ldquo;^&amp;ldquo;表示行的开始 &amp;ldquo;$&amp;ldquo;表示行的结尾 单词定界符 \b \B 查找一个完整的单</description>
    </item>
    
    <item>
      <title>Helloworld</title>
      <link>https://www.xuehu96.com/post/helloworld/</link>
      <pubDate>Mon, 08 Jun 2020 17:04:16 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/helloworld/</guid>
      <description>helloworld 1 2 3 4 5 6 7 #include &amp;lt;stdio.h&amp;gt; int main() { printf(&amp;#34;Helloworld!\n&amp;#34;); return 0; } 1 2 3 4 5 6 7 func arraySum(x [3]int) int{ sum := 0 for _, v := range x{ sum = sum + v } return sum } hugo 创建新文件 hugo new post/filename.md</description>
    </item>
    
    <item>
      <title>Qt笔记</title>
      <link>https://www.xuehu96.com/post/cpp/qt/</link>
      <pubDate>Sun, 05 Jan 2020 23:17:37 +0800</pubDate>
      
      <guid>https://www.xuehu96.com/post/cpp/qt/</guid>
      <description>0. Qt快捷键 界面控制 F1查看帮助 Esc回到代码 F2 跳转到函数定义（和Ctrl+鼠标左键一样的效果） Shift+F2 声明和定义之间切换 F4头文件和源文件之间切</description>
    </item>
    
    <item>
      <title>关于我</title>
      <link>https://www.xuehu96.com/about/</link>
      <pubDate>Tue, 10 Mar 2015 00:13:27 +0000</pubDate>
      
      <guid>https://www.xuehu96.com/about/</guid>
      <description>typedef xuehu c/c++程序员 会的东西？ [ #################--- ] 85% C [ #################--- ] 85% C++ [ #############------- ] 65% Go</description>
    </item>
    
    <item>
      <title>归档</title>
      <link>https://www.xuehu96.com/archives/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://www.xuehu96.com/archives/</guid>
      <description></description>
    </item>
    
    <item>
      <title>搜索</title>
      <link>https://www.xuehu96.com/search/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://www.xuehu96.com/search/</guid>
      <description></description>
    </item>
    
  </channel>
</rss>
