[вычислительная техника] синтаксис
имя существительное 1) синтаксис, строй, порядок 2) а) [лингвистика] синтаксис (способы соединения слов в словосочетания и предложения; раздел грамматики, изучающий эту часть языковой системы) б) [логика] синтаксис (способы соединения слов и символов в логическое высказывание) Syntax
синтаксис набор формальных правил записи предложений естественного языка, языка программирования или команд операционной системы. Синтаксис языка описывается его грамматикой (grammar), а значение предложения определяется семантикой языка программирования (semantics) Смотри также: BNF, EBNF, notation, syntax diagram, syntax rule, syntax tree
noun Etymology: Middle French or Late Latin; Middle French sintaxe, from Late Latin syntaxis, from Greek, from syntassein to arrange together, from syn- + tassein to arrange 1. a. the way in which linguistic elements (as words) are put together to form constituents (as phrases or clauses) b. the part of grammar dealing with this 2. a connected or orderly system; harmonious arrangement of parts or elements Example: the syntax of classical architecture 3. syntactics especially as dealing with the formal properties of languages or calculi
The structure of valid strings in a given language, as described by a grammar. For example, the syntax of a binary number could be expressed as binary_number = bit [ binary_number ] bit = "0" | "1" meaning that a binary number is a bit optionally followed by a binary number and a bit is a literal zero or one digit. The meaning of the language is given by its semantics. See also abstract syntax, concrete syntax.