We are independent & ad-supported. We may earn a commission for purchases made through our links.
Advertiser Disclosure
Our website is an independent, advertising-supported platform. We provide our content free of charge to our readers, and to keep it that way, we rely on revenue generated through advertisements and affiliate partnerships. This means that when you click on certain links on our site and make a purchase, we may earn a commission. Learn more.
How We Make Money
We sustain our operations through affiliate commissions and advertising. If you click on an affiliate link and make a purchase, we may receive a commission from the merchant at no additional cost to you. We also display advertisements on our website, which help generate revenue to support our work and keep our content free for readers. Our editorial team operates independently of our advertising and affiliate partnerships to ensure that our content remains unbiased and focused on providing you with the best information and recommendations based on thorough research and honest evaluations. To remain transparent, we’ve provided a list of our current affiliate partners here.
Software

Our Promise to you

Founded in 2002, our company has been a trusted resource for readers seeking informative and engaging content. Our dedication to quality remains unwavering—and will never change. We follow a strict editorial policy, ensuring that our content is authored by highly qualified professionals and edited by subject matter experts. This guarantees that everything we publish is objective, accurate, and trustworthy.

Over the years, we've refined our approach to cover a wide range of topics, providing readers with reliable and practical advice to enhance their knowledge and skills. That's why millions of readers turn to us each year. Join us in celebrating the joy of learning, guided by standards you can trust.

What Is a Double Array?

By Eugene P.
Updated: May 16, 2024
References

There are two uses for the term "double array". The first indicates that an array is made up of data elements of the scalar type double, a kind of floating point number. The second use describes an array that is two-dimensional (2D) or multidimensional. Multidimensional arrays have more than one index into the memory locations of the data, meaning each element within the double array is actually the start of another array. In object oriented languages, a double array also can indicate an array that contains elements of the class double, instead of the scalar type.

Not all computer programming languages have a data type known as a double. In general, however, it is a floating point representation of a number that takes up twice, or double, the amount of space that a single precision number occupies. These numbers can hold remarkably high values that are usually expressed with exponents. Most computer hardware uses 64 bits to represent a double, meaning a double array will occupy 8 bytes in memory for each element, although some hardware uses 128 bits or more for a double precision data type.

Many object oriented programming languages have wrapper classes for scalar data types, allowing them to be treated like any other class or object. A double array can contain these objects instead, in which case the array will function like an array of instanced classes. This can sometimes be useful for some network situations in which serialization is an issue or in multithreaded applications where synchronization is important.

When referring to a multidimensional array, a double array usually indicates an array that has two sets of indices. A one-dimensional array is simply a list of similar data types that are all aligned consecutively in computer memory, with the location of each separate data cell being numbered sequentially upwards starting at zero. The number that corresponds to the location of the data within the array is known as its index, and the data at the index are called the data element, or just element.

A double array is basically a single-dimensional array in which each index is actually the first index of another single-dimensional array. One way to visualize a double array is as a grid, or a piece of graph paper. The first index in the array would refer to which column in the grid is being referenced, while the second index would indicate what row within that column is being accessed.

EasyTechJunkie is dedicated to providing accurate and trustworthy information. We carefully select reputable sources and employ a rigorous fact-checking process to maintain the highest standards. To learn more about our commitment to accuracy, read our editorial process.
Link to Sources
Discussion Comments
Share
https://www.easytechjunkie.com/what-is-a-double-array.htm
EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.

EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.