码迷,mamicode.com
首页 > 其他好文 > 详细

Rust 1.7.0 语法基础 标识符(ident)和分隔符的约束

时间:2016-04-19 12:17:27      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:

一、标识符

identifier 是标识符,在Rust语法中简写为 ident
ident 是由任意个非空的unicode字符组成。

举例:

在 attribute 语法中,有

meta_item : ident [ ‘=‘ literal  | ‘(‘ meta_seq ‘)‘ ] ? ;

实际使用如下:

#![crate_type = "lib"]
#![allow(dead_code)]
#![feature(intrinsics, lang_items)]
#[test]

上面的 crate_type、allow、feature和test 都是 ident 。

更多参看 Rust 1.7.0 语法基础 attribute

二、分隔符约束

Rust语法中规定了哪些字符不能作为分隔符,而不是规定了哪些字符可以作为分隔符。

约束规则如下:

non_null 表示任意单个unicode字符,但排除 U+0000 (即排除null)
non_eol 表示的是受限的 non_null,排除回车符 U+000A (‘\n’)
non_single_quote 表示的是受限的 non_null 排除单引号 U+0027 (‘)
non_double_quote 表示受限的 non_null 排除了双引号 U+0022 (“)

Rust 1.7.0 语法基础 标识符(ident)和分隔符的约束

标签:

原文地址:http://blog.csdn.net/teamlet/article/details/51182276

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!