C++研究笔记(5)语法描述的格式

类别:编程语言 点击:0 评论:0 推荐:

作为 C++ 语言标准语法部分的核心内容,C++ 语法规范使用 C++ 语法表示法表达。C++ 语法表示法需要我们深入的理解。C++ 标准规定:

1.6 Syntax notation [syntax]

In the syntax notation used in this International Standard, syntactic categories are indicated by italic type, and literal words and characters in constant width type. Alternatives are listed on separate lines except in a few cases where a long set of alternatives is presented on one line, marked by the phrase “one of.” An optional terminal or nonterminal symbol is indicated by the subscript “opt,” so
    { expressionopt }
indicates an optional expression enclosed in braces.
在本标准使用的语法表示法中,语法范畴由斜体字表示,字面的词汇和字符用等宽字体表示。除了少量情况用带有“之一”语句标志的一整行列出长串的候选条目外,都分别列在单独的行上。可选的终结符或非终结符被标以“opt”下标,于是
    { expressionopt }
表示被包围在花括号中的一个可选表达式。

Names for syntactic categories have generally been chosen according to the following rules:
选择语法范畴的名字通常依据以下规则选择:

X-name is a use of an identifier in a context that determines its meaning (e.g. class-name, typedef-name).
某名称 表示通过上下文决定的某个标识符(比如 类名称,类型定义名称)。 X-id is an identifier with no context-dependent meaning (e.g. qualified-id).
某标识 表示上下文无关的标识符(比如 限定标识)。 X-seq is one or more X's without intervening delimiters (e.g. declaration-seq is a sequence of declarations).
某序列 表示一个或多个无分隔符的某条目(比如 声明序列 是一系列声明)。 X-list is one or more X's separated by intervening comma (e.g. expression-list is a sequence of expressions separated by commas).
某列表 表示一个或多个被逗号分隔的某条目(比如 表达式列表 是一系列被逗号分隔的表达式)。

 

本文地址:http://com.8s8s.com/it/it26159.htm