From 13a6e488c31895737a5d75f9c0bb82167c075429 Mon Sep 17 00:00:00 2001 From: itfanr Date: Sun, 14 Dec 2014 15:24:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9C++=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2=E7=89=B9=E6=AE=8A=E5=AD=97=E7=AC=A6=E7=9A=84=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 估计是译者粗心了。 --- eBook/04.6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/04.6.md b/eBook/04.6.md index 2514825..42c763a 100644 --- a/eBook/04.6.md +++ b/eBook/04.6.md @@ -22,7 +22,7 @@ Go 支持以下 2 种形式的字面值: `This is a raw string \n` 中的 `\n\` 会被原样输出。 -和 C/C++ 一样,Go 中的字符串是根据长度限定,而非特殊字符。 +和 C/C++不一样,Go 中的字符串是根据长度限定,而非特殊字符`\0`。 `string` 类型的零值为长度为零的字符串,即空字符串 `""`。