Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What is the sintaxis for initialized 3D, 4d, etc DIM ARRAY ?
#4
You can use _ to break lines for better code legibilty.
Also, when doing a DIM by default ZX Basic uses 0 index, o DIM a(3) contains FOUR slots a(0), a(1), a(2) and a(3).
If you want to start form 1 like in Sinclair BASIC either compile with --array-base=1 or write it as this:

DIM a(1 TO 3)

That said, I guess you want:
Code:
DIM Array3D(1 TO 3, 1 TO 2, 1 TO 1) AS Ubyte => { _
    {{0}, {0}}, _
    {{0}, {0}}, _
    {{0}, {0}} _
}


Another way is to use DIM(3, 2, 1) and ignore the 0 position, but you have to initialize it anyway:
Code:
DIM Aarray3D(3, 2, 1) AS Ubyte => { _
    {{0, 0}, {0, 0}, {0, 0}}, _
    {{0, 0}, {0, 0}, {0, 0}}, _
    {{0, 0}, {0, 0}, {0, 0}}, _
    {{0, 0}, {0, 0}, {0, 0}} _
}


Hope this helps. Smile
Reply


Messages In This Thread
RE: What is the sintaxis for initialized 3D, 4d, etc DIM ARRAY ? - by boriel - 11-14-2019, 02:11 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)