About Arrays

Traditionally, an array is a tabular structure used to hold data, much like a spreadsheet table with clearly defined limits and dimensions. A two-dimensional (2D) array is like a simple table. In ColdFusion, you typically use arrays to temporarily store data. For example, if your site allows users to order goods online, you can store their shopping cart contents in an array. This allows you to make changes easily without committing the information, which the user can change before completing the transaction, to a database.

Conventional fixed-size 2D array

A 2D array is like a cube made up of individual cells, as the following figure shows:

ColdFusion arrays differ somewhat from traditional arrays because they are dynamic. For example, in a conventional array, array size is constant and symmetrical, whereas in a ColdFusion 2D array you can have rows of differing lengths based on the data that has been added or removed. The following figure represents a ColdFusion 2D array:

ColdFusion dynamic 2D array

A ColdFusion 2D array is actually a one-dimensional array that contains a series of additional 1D arrays. Each of the arrays that make up a row can expand and contract independently of any other column.

The following terms will help you understand subsequent discussions of ColdFusion arrays:

The syntax my2darray[1][3]="Paul" is the same as saying 'My2dArray is a two-dimensional array and the value of the array element index [1][3] is "Paul".'

Dynamic arrays expand to accept data you add to them and contract as you remove data from them.



Banner.Novgorod.Ru