Static array size limit

bearophile bearophileHUGS at lycos.com
Sat Apr 2 07:45:51 PDT 2011


simendsjo:

> http://digitalmars.com/d/2.0/arrays.html says static arrays are
> limited to 16mb, but I can only allocate 1mb.
> My fault, or bug?

It accepts 4_000_000 ints, but not (16 * 1024 * 1024) / int.sizeof = 4_194_304 ints. I don't know why it's designed this way... I'd like 4_194_304 ints.

Bye,
bearophile


More information about the Digitalmars-d-learn mailing list