- published: 09 Jun 2009
- views: 45914
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 (identifying keys) that can be computed at run time by the program. Such a collection is usually called an array variable, array value, or simply array. By analogy with the mathematical concepts of vector and matrix, array types with one and two indices are often called vector type and matrix type, respectively.
Language support for array types may include certain built-in array data types, some syntactic constructions (array type constructors) that the programmer may use to define such types and declare array variables, and special notation for indexing array elements. For example, in the Pascal programming language, the declaration type MyTable = array [1..4,1..2] of integer
, defines a new array data type called MyTable
. The declaration var A: MyTable
then defines a variable A
of that type, which is an aggregate of eight elements, each being an integer variable identified by two indices. In the Pascal program, those elements are denoted A[1,1]
, A[1,2]
, A[2,1]
,… A[4,2]
. Special array types are often defined by the language's standard libraries.
Java Data types & Arrays
Data Structures: List as abstract data type
Hive Basics: Collection Data Types | Map, Array, Struct | Analyze complex data
LabVIEW FPGA: Convert between Boolean array and integer data types
C Programming in Linux Tutorial #006 - Data Types: Array
JavaScript - Data Types Explained [ Number , String , Array , Boolean ] - Lesson 4
SAP HANA Academy - HANA SQL - Array Data Type
PHP tutorial in Tamil #10 Array Data Type in PHP
JavaScript Training Tutorial The Array Data Type
15. C++ Programming Tutorial 14: Compound Data Types - Arrays
Part 17.Data type and array part 1
022 Javascript Tutorial DataType Array Part 1 Ep 22
023 Javascript Tutorial DataType Array Part 2 Ep 23
024 Javascript Tutorial DataType Array Part 3 Ep 24