Skip to content

Commit

Permalink
deploy: c4251c6
Browse files Browse the repository at this point in the history
  • Loading branch information
archibate committed Jul 18, 2024
1 parent b7fba81 commit 674f3d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion print_page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2497,7 +2497,7 @@ <h4 id="unicode-u8">u8 字符串常量的作用</h4>
<tbody>
<tr>
<td>&ldquo;你好&rdquo;</td>
<td>运行字符集 (ANSI)</td>
<td>运行字符集 (默认是开发者电脑的“区域设置”,而不是客户的)</td>
<td><code>const char []</code></td>
</tr>
<tr>
Expand All @@ -2522,6 +2522,9 @@ <h4 id="unicode-u8">u8 字符串常量的作用</h4>
</tr>
</tbody>
</table>
<blockquote>
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 只不过是开发者和客户往往处于同一个地区,所以 <code>"你好"</code> 看起来好像可以直接输入到 <code>std::cout</code> 中一样。实际上他只是开发者电脑的 ANSI,而不是客户电脑的 ANSI,如果直接拿来打印,会导致以 <code>""</code> 常量形式写死的字符串会在客户电脑上出现乱码。除非这个字符串只包含 ASCII,因为所有 ANSI 都兼容 ASCII,才恰好避免了乱码。</p>
</blockquote>
<h2 id="unicode-_11">选择你的阵营!</h2>
<p><img alt="" src="../img/utfwar.png" /></p>
<h3 id="unicode-ansi">ANSI 阵营</h3>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion unicode/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ <h4 id="u8">u8 字符串常量的作用</h4>
<tbody>
<tr>
<td>&ldquo;你好&rdquo;</td>
<td>运行字符集 (ANSI)</td>
<td>运行字符集 (默认是开发者电脑的“区域设置”,而不是客户的)</td>
<td><code>const char []</code></td>
</tr>
<tr>
Expand All @@ -1217,6 +1217,9 @@ <h4 id="u8">u8 字符串常量的作用</h4>
</tr>
</tbody>
</table>
<blockquote>
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 只不过是开发者和客户往往处于同一个地区,所以 <code>"你好"</code> 看起来好像可以直接输入到 <code>std::cout</code> 中一样。实际上他只是开发者电脑的 ANSI,而不是客户电脑的 ANSI,如果直接拿来打印,会导致以 <code>""</code> 常量形式写死的字符串会在客户电脑上出现乱码。除非这个字符串只包含 ASCII,因为所有 ANSI 都兼容 ASCII,才恰好避免了乱码。</p>
</blockquote>
<h2 id="_11">选择你的阵营!</h2>
<p><img alt="" src="../img/utfwar.png" /></p>
<h3 id="ansi">ANSI 阵营</h3>
Expand Down

0 comments on commit 674f3d8

Please sign in to comment.