Skip to content

Commit

Permalink
deploy: 228e611
Browse files Browse the repository at this point in the history
  • Loading branch information
zhendewokusi committed Feb 18, 2024
1 parent 75e4c89 commit 0ab7975
Show file tree
Hide file tree
Showing 60 changed files with 1,204 additions and 275 deletions.
Empty file added .nojekyll
Empty file.
6 changes: 3 additions & 3 deletions 2023/10/02/hello-world/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-02T14:04:13.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.625Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="hexo">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -323,7 +323,7 @@ <h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerl
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/09/条款21/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="使用std::make_shared的理由:代码精简1234auto upw1(std::make_unique&lt;Widget&gt;());std::unique_ptr&lt;Widget&gt; upw2(new Widget);auto spw1(std::make_shared&lt;Widget&gt;());std::shared_ptr&lt;Widget&gt; spw2(">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-09T14:04:13.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="c++">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -340,7 +340,7 @@ <h5 id="不能完美转发大括号初始化物"><a href="#不能完美转发大
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions 2023/10/09/条款23/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="须知std::move 不做任何移动, std::forward 不做任何转发。它们在运行的时候什么都没干。它们两个都只做了强制类型转换,std::move 无条件将实参强制转换成右值,std::forward 是有条件的执行强制类型转换。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-09T15:04:13.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="c++">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -267,7 +267,7 @@ <h3 id="std-forward"><a href="#std-forward" class="headerlink" title="std::forwa
<i class="fa fa-chevron-left"></i> 条款 21 :优先选用 std::make_unique 和std::make_shared, 而非直接使用 new
</a></div>
<div class="post-nav-item">
<a href="/2023/10/11/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/" rel="next" title="指针和数组">
<a href="/2023/10/10/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/" rel="next" title="指针和数组">
指针和数组 <i class="fa fa-chevron-right"></i>
</a></div>
</div>
Expand Down Expand Up @@ -344,7 +344,7 @@ <h3 id="std-forward"><a href="#std-forward" class="headerlink" title="std::forwa
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
<meta name="description" content="指针和数组C 语言中指针和数组这两个概念密不可分,以至于如果没有理解其中一个概念,就无法彻底理解另一个概念。 数组很基础的一些知识点我就不重复了。关于数组,需要注意的有两个点: C 语言中只有一维数组,而且编译期间就要知道数组的精确大小。数组的元素可以是任何类型的对象,当然也包含了数组,这也就是多维数组。 对于一个数组,我们其实只能干两件事情:确定数组的大小、获取指向该数组下标为 0 的元素的指">
<meta property="og:type" content="article">
<meta property="og:title" content="指针和数组">
<meta property="og:url" content="http://zhendewokusi.github.io/2023/10/11/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/index.html">
<meta property="og:url" content="http://zhendewokusi.github.io/2023/10/10/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/index.html">
<meta property="og:site_name" content="元芳你怎么看">
<meta property="og:description" content="指针和数组C 语言中指针和数组这两个概念密不可分,以至于如果没有理解其中一个概念,就无法彻底理解另一个概念。 数组很基础的一些知识点我就不重复了。关于数组,需要注意的有两个点: C 语言中只有一维数组,而且编译期间就要知道数组的精确大小。数组的元素可以是任何类型的对象,当然也包含了数组,这也就是多维数组。 对于一个数组,我们其实只能干两件事情:确定数组的大小、获取指向该数组下标为 0 的元素的指">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-10T18:13:00.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="C语言">
<meta name="twitter:card" content="summary">

<link rel="canonical" href="http://zhendewokusi.github.io/2023/10/11/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/">
<link rel="canonical" href="http://zhendewokusi.github.io/2023/10/10/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/">


<script id="page-configurations">
Expand Down Expand Up @@ -170,7 +170,7 @@ <h1 class="site-title">元芳你怎么看</h1>


<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://zhendewokusi.github.io/2023/10/11/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/">
<link itemprop="mainEntityOfPage" href="http://zhendewokusi.github.io/2023/10/10/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/">

<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -338,7 +338,7 @@ <h4 id="二维数组"><a href="#二维数组" class="headerlink" title="二维
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/11/函数声明/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="正确理解函数声明看书的时候看到一个很抽象的语句:(*(void(*)())0)();想必每个C程序员看到这条语句都会觉得难绷。这个表达式实际上是在尝试调用位于地址0处的函数指针。在大多数操作系统中,访问地址0通常是非法的,因为它可能导致程序崩溃或产生未定义的行为。这种操作在一些特殊的底层编程场景中可能有用,但在通常的应用程序中应该避免使用,因为它不安全且不可移植。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-11T14:04:13.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="C语言">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -386,7 +386,7 @@ <h4 id="解答"><a href="#解答" class="headerlink" title="解答"></a>解答</
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions 2023/10/11/运算符优先级/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="运算符优先级的问题假如有下面的代码。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-11T11:25:42.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="C语言">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -252,7 +252,7 @@ <h3 id="运算符优先级规则"><a href="#运算符优先级规则" class="hea

<div class="post-nav">
<div class="post-nav-item">
<a href="/2023/10/11/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/" rel="prev" title="指针和数组">
<a href="/2023/10/10/%E6%8C%87%E9%92%88%E5%92%8C%E6%95%B0%E7%BB%84/" rel="prev" title="指针和数组">
<i class="fa fa-chevron-left"></i> 指针和数组
</a></div>
<div class="post-nav-item">
Expand Down Expand Up @@ -333,7 +333,7 @@ <h3 id="运算符优先级规则"><a href="#运算符优先级规则" class="hea
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/12/条款24/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="前言不是所有的&amp;&amp;都是右值引用! 12345678void f (Widget&amp;&amp; param); &#x2F;&#x2F; 右值引用Widget&amp;&amp; varl &#x3D; Widget(); &#x2F;&#x2F; 右值引用auto&amp;&amp; var2 &#x3D; van; &#x2F;&#x2F; 不是右值引用template&lt;typename T&gt;void f(std">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-12T08:56:05.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="c++">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -349,7 +349,7 @@ <h3 id="万能引用的作用"><a href="#万能引用的作用" class="headerlin
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/12/条款25/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="重载?在条款23的基础上,再来细说一下std::move和std::forward。看这个例子: 1234567891011121314151617class Data &amp;#123;&amp;#125;;class Entity &amp;#123; public: template &lt;typename T&gt; void setName(T&amp;&amp; newName) &amp;#12">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-12T12:35:45.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="c++">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -341,7 +341,7 @@ <h3 id="局部对象可能适用于返回值优化"><a href="#局部对象可能
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/14/加载程序(器)的工作流程/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="用户程序头部我们知道编译器编译的用户程序和加载器实际上是在不同时间、不同地方、不同的人开发的。因此,双方都不了解对象的结构和功能,此时就需要一个结构来传达必要的信息。在看下面的文章时候最好能完全掌握地址、section、vstart的内容。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-14T10:07:34.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="x86汇编">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -421,7 +421,7 @@ <h6 id="cmp-jz-jnz指令理解"><a href="#cmp-jz-jnz指令理解" class="headerl
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions 2023/10/14/地址、section、vstart/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta property="og:description" content="前言我在学习汇编的时候,对于vstart的概念其实很模糊,感觉会又感觉不是很会,要说哪儿不会有说不出来,就很难受。vstart是section中的概念,但是要讲清楚什么是section,就必须说说什么是地址了。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-10-14T06:55:49.000Z">
<meta property="article:modified_time" content="2024-02-06T14:27:07.628Z">
<meta property="article:modified_time" content="2024-02-18T14:49:00.871Z">
<meta property="article:author" content="zhendewokusi">
<meta property="article:tag" content="x86汇编">
<meta name="twitter:card" content="summary">
Expand Down Expand Up @@ -200,7 +200,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-02-06 22:27:07" itemprop="dateModified" datetime="2024-02-06T22:27:07+08:00">2024-02-06</time>
<time title="修改时间:2024-02-18 22:49:00" itemprop="dateModified" datetime="2024-02-18T22:49:00+08:00">2024-02-18</time>
</span>


Expand Down Expand Up @@ -349,7 +349,7 @@ <h3 id="vstart"><a href="#vstart" class="headerlink" title="vstart"></a>vstart</
<div class="site-state-item site-state-posts">
<a href="/archives/">

<span class="site-state-item-count">17</span>
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand Down
Loading

0 comments on commit 0ab7975

Please sign in to comment.