-
21 type modifier
в ЯВУ - ключевое слово, модифицирующее существующий тип данных. Обычно стоит перед именем типа данных; например, в случае объявления типа long integer( длинное целое число) слово "long" - модификаторсм. тж. data typeАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > type modifier
-
22 integer type
automatic data processing• kokonaislukutyyppi -
23 PIC S9(4) COMP Integer
"A 16-bit COBOL data type that represents signed arithmetic operations occupying 2 bytes of storage, and can take on values from -9999 to +9999 or -32768 to +32767. A PIC S9(4) COMP integer is normally analogous to an Integer data type in Microsoft© Visual Basic© and a Short Integer in C when referring to 32-bit." -
24 identifier type character
"A character that that forces a literal to assume a data type other than the one its form indicates. You do this by appending the character to the end of the literal. For example, ""%"" forces the Integer data type of the literal ""L"" in the following declaration: Dim L%." -
25 primitive type
= primitive data typeпростой тип [данных]тип данных, не являющийся подтипом никакого другого типа данных. В ЯВУ к простым типам данных относят следующие типы: integer, Boolean, character, real, string, а также перечислимые типы (см. enumeration type). Обычно они определены в самом ЯВУ и потому могут именоваться также встроенными типами данных (см. built-in data type).Syn:Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > primitive type
-
26 ordinal type
= ordinal data typeпорядковый тип [данных]к таким типам относятся данные, состоящие из дискретных элементов (discrete element), у которых каждое значение, кроме первого, имеет уникального дискретного предшественника (discrete predecessor), а каждое значение, кроме последнего, имеет уникального дискретного преемника; в частности, этот тип может описывать и беззнаковые целые числа. К порядковым типам относятся перечислимый тип (enumerated type), поддиапазонный тип (subrange type), символьный тип (character type), логический тип (Boolean type) и целочисленный тип (integer)Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > ordinal type
-
27 simple type
= simple data typeпростые типы данных делятся на две основных категории: порядковые типы (ordinal type) и вещественные типы (real type).Syn:Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > simple type
-
28 unsigned integer
целое [число] без знака, беззнаковое целоетип данных, значениями которого может быть ноль и положительные целые числаАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > unsigned integer
-
29 PIC S9(9) COMP Integer
"A 32-bit COBOL data type that represents a 4 byte signed arithmetic operation, and can take on values from -999999999 to +999999999 or -2147483648 to +2147483647, depending on compiler options. A PIC S9(9) COMP Integer is similar to a Long Integer in C." -
30 member type
1. тип элемента2. тип членаEnglish-Russian dictionary of Information technology > member type
-
31 abstract type
English-Russian dictionary of Information technology > abstract type
-
32 access type
English-Russian dictionary of Information technology > access type
-
33 aggregate type
English-Russian dictionary of Information technology > aggregate type
-
34 base type
English-Russian dictionary of Information technology > base type
-
35 character type
English-Russian dictionary of Information technology > character type
-
36 connection type
English-Russian dictionary of Information technology > connection type
-
37 current of record type
English-Russian dictionary of Information technology > current of record type
-
38 derived type
English-Russian dictionary of Information technology > derived type
-
39 descendant type
English-Russian dictionary of Information technology > descendant type
-
40 document type
English-Russian dictionary of Information technology > document type
См. также в других словарях:
Data type — For other uses, see Data type (disambiguation). In computer programming, a data type is a classification identifying one of various types of data, such as floating point, integer, or Boolean, that determines the possible values for that type; the … Wikipedia
Array data type — Not to be confused with Array data structure. In computer science, an array type is a data type that is meant to describe a collection of elements (values or variables), each selected by one or more indices that can be computed at run time by the … Wikipedia
Algebraic data type — In computer programming, particularly functional programming and type theory, an algebraic data type (sometimes also called a variant type[1]) is a datatype each of whose values is data from other datatypes wrapped in one of the constructors of… … Wikipedia
Decimal data type — Some programming languages provide a built in (primitive) or library decimal data type to represent non repeating decimal fractions like 0.3 and 1.17 without rounding, and to do arithmetic on them. Examples are the decimal.Decimal type of Python … Wikipedia
Composite data type — In computer science, a composite data type is any data type which can be constructed in a program using its programming language s primitive data types and other composite types. The act of constructing a composite type is known as composition.… … Wikipedia
Opaque data type — In computer science, an opaque data type is a user defined data type used like built in data type. It is incompletely defined in an interface, so that ordinary client programs can only manipulate data of that type by calling procedures that have… … Wikipedia
Complex data type — Some programming languages provide a complex data type for complex number storage and arithmetic as a built in (primitive) data type. In some programming environments the term complex data type (in contrast to primitive data types) is a synonym… … Wikipedia
Real data type — A real data type is a data type used in a computer program to represent an approximation of a real number.Because the real numbers are not countable, computers cannot represent them exactly using a finite amount of information.Most often, a… … Wikipedia
Type system — Type systems Type safety Inferred vs. Manifest Dynamic vs. Static Strong vs. Weak Nominal vs. Structural Dependent typing Duck typing Latent typing Linear typing Uniqueness typing … Wikipedia
Type inference — Type inference, or implicit typing, refers to the ability to deduce automatically the type of a value in a programming language. It is a feature present in some strongly statically typed languages. It is often characteristic of but not limited to … Wikipedia
Data structure alignment — is the way data is arranged and accessed in computer memory. It consists of two separate but related issues: data alignment and data structure padding. When a modern computer reads from or writes to a memory address, it will do this in word sized … Wikipedia