Files
freeCodeCamp/guide/chinese/swift/comments/index.md
Shane 0306b36e52 replace with 备注 and 结尾 (#21167)
it's easier to understand and make sense.
2018-12-23 21:51:15 -08:00

29 lines
547 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Comments
localeTitle: 注释
---
## 注释
注释允许您备注您的代码。 Swift编译器忽略注释仅对阅读代码库的人有用。
单行注释以两个正斜杠`//`开头。
#### 例:
```swift
// Hello, single-line comment!
```
多行注释以正斜杠开头,后跟星号`/*` ,以星号后跟正斜杠做结尾`*/`
#### 例:
```swift
/* Hello,
multiline-line comment! */
```
#### 更多信息:
* [Swift编程语言](https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID315)