Storage requirements for arrays

May 20, 2008
3,515
4
Elkridge, MD, USA
Rex:
I'd like to have a rough idea of the relationship between the number of
null-string array elements (i.e., declared but not loaded) and the storage
space they require, esp. for huge arrays (over 10,000 elements).
--
Steve
 
> I'd like to have a rough idea of the relationship between the
> number of null-string array elements (i.e., declared but not loaded)
> and the storage space they require, esp. for huge arrays (over 10,000
> elements).

One pointer per element. Until you're into the tens of millions of
elements, it's not an issue.

Rex Conn
JP Software