-
1 Integer data type
"A fundamental data type that holds integers. An Integer variable is stored as a 16-bit (2-byte) number ranging in value from -32,768 to 32,767." -
2 integer field
A type of field whose content is a whole number. Examples include the ID and Unique ID fields. -
3 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." -
4 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." -
5 unsigned integer
"A data type that can only hold a whole number with a value greater than, or equal to, zero. In this implementation, the maximum value that an unsigned integer can hold is 0xFFFFFFFF (4,294,967,295)." -
6 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%." -
7 dword
A data type consisting of a 32-bit unsigned integer. -
8 bigint
An integer data type with a value from -2^63 (-9223372036854775808) through 2^63-1 (9223372036854775807). -
9 bit
"A data type that stores either a 1 or 0 value. Integer values other than 1 or 0 are accepted, but they are always interpreted as 1."بت -
10 byte
A field size or data type that can hold positive integer numbers ranging from 0 to 255. -
11 DWORD
A data type consisting of a 32-bit unsigned integer.
См. также в других словарях:
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 conversion — This article is about the computer science concept. For the aviation licensing process, see Type conversion (aviation). In computer science, type conversion, typecasting, and coercion refers to different ways of, implicitly or explicitly,… … Wikipedia
Integer overflow — In computer programming, an integer overflow occurs when an arithmetic operation attempts to create a numeric value that is larger than can be represented within the available storage space. For instance, adding 1 to the largest value that can be … 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
Integer BASIC — Integer BASIC, written by Steve Wozniak, was the BASIC interpreter of the Apple I and original Apple II computers. Originally available on cassette, then included in ROM on the original Apple II computer at release in 1977, it was the first… … Wikipedia
Type signature — is a term that is used in computer programming.A type signature defines the inputs and outputs for a function or method. A type signature includes at least the function name and the number of its parameters. In some programming languages, it may… … Wikipedia
Integer (computer science) — In computer science, an integer is a datum of integral data type, a data type which represents some finite subset of the mathematical integers. Integral data types may be of different sizes and may or may not be allowed to contain negative values … Wikipedia
Type safety — In computer science, type safety is a property of some programming languages that is defined differently by different communities, but most definitions involve the use of a type system to prevent certain erroneous or undesirable program behavior… … Wikipedia
Type polymorphism — In computer science, polymorphism is a programming language feature that allows values of different data types to be handled using a uniform interface. The concept of parametric polymorphism applies to both data types and functions. A function… … Wikipedia
Integer factorization — In number theory, integer factorization is the way of breaking down a composite number into smaller non trivial divisors, which when multiplied together equal the original integer.When the numbers are very large, no efficient integer… … Wikipedia
Type punning — FORCETOC In computer science, type punning is a common term for any programming technique that subverts or circumvents the type system of a programming language in order to achieve an effect that would be difficult or impossible to achieve within … Wikipedia