From 58c87ae68ebffc9614dd07da7fbb6c2134e2135b Mon Sep 17 00:00:00 2001 From: yankuangshi Date: Tue, 10 Jun 2014 23:49:16 +0200 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=AB=A0=E8=8A=82=E5=86=85?= =?UTF-8?q?=E6=AF=8F=E5=B0=8F=E8=8A=82=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter2/08_Enumerations.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/chapter2/08_Enumerations.md b/source/chapter2/08_Enumerations.md index 1bce71da..ec177e32 100644 --- a/source/chapter2/08_Enumerations.md +++ b/source/chapter2/08_Enumerations.md @@ -4,10 +4,10 @@ 本页内容包含: -- 枚举语法(Enumeration Syntax) -- 匹配枚举值与`Switch`语句(Matching Enumeration Values with a Switch Statement) -- 关联值(Associated values) -- 原始值(Raw values) +- [枚举语法(Enumeration Syntax)](#enumeration_syntax) +- [匹配枚举值与`Switch`语句(Matching Enumeration Values with a Switch Statement)](#matching_enumeration_values_with_a_switch_statement) +- [关联值(Associated values)](#associated_values) +- [原始值(Raw values)](#raw_values) **枚举**定义了一个通用类型的一组相关的值,使你可以在你的代码中以一个安全的方式来使用这些值。