From 2c2097e940df4663b0b0054963e2c5b5a2a7f6a4 Mon Sep 17 00:00:00 2001 From: Lee_Klaus Date: Mon, 10 Dec 2018 10:26:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=80=E6=96=B0=E6=96=87=E6=A1=A3=E4=B8=AD?= =?UTF-8?q?=E8=BF=99=E9=87=8C=E9=9C=80=E8=A6=81=E7=94=A8!=20=E6=9D=A5?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=80=BC=20(#837)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter2/01_The_Basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/01_The_Basics.md b/source/chapter2/01_The_Basics.md index 61879282..218ef5ba 100755 --- a/source/chapter2/01_The_Basics.md +++ b/source/chapter2/01_The_Basics.md @@ -667,7 +667,7 @@ let implicitString: String = assumedString // 不需要感叹号 ```swift if assumedString != nil { - print(assumedString) + print(assumedString!) } // 输出 "An implicitly unwrapped optional string." ```