QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: SirCrow on November 24, 2019, 03:20:04 pm
-
I can't begin to imagine why the UBOUND line causes a Subscript out of range error:
Gr_Ship_Dist
= SQR(((Ship_X
- Grav_X
) ^ 2) + ((Ship_Y
- Grav_Y
) ^ 2)) IF Gr_Ship_Dist
> (Energy
+ 20) * 3 GOTO Next_Obj
True, sometimes the code is executed after the array Seat has been ERASEd, and sometimes when it hasn't, but that's exactly why I added the UBOUND check. And now that's causing an error! Help me, please!
(BTW, I use OPTION BASE 1 in this prog.)
-
So, if sometimes array exists and sometimes not, maybe try this method for array size test:
DIM c(5) AS LONG 'long = 4 bytes, records from 0 to 5 (6 records), so LEN = 24
PRINT LEN(c())
Or - if your code is used in SUB but array Seat is not SHARED, this can also do this error.
Edit:
If you use LEN on a field that does not exist, it will not return a value of 0, as you might expect, but a field value of 11 records. For example, if you write PRINT LEN (NotExists ()), you get a result of 44. The reason is that all variables in QB64 automatically get the assigned size of 10 (including 0) therefore 11 records. Well, if the "NotExists" field does not exist, QB64 counts with the default SINGLE type, which is 4 bytes per record * 11 = 44.
So instead of a complicated field existence test, would always leave it defined, allow a record of 0, and insert a value of 1 if I wanted to process the field, or a value of 0 if I didn't want to process the field. Or you can use an auxiliary variable, but again, that's pretty confusing when more are needed and it's an easy way how to go crazy... look to me... :)
-
Hi
please say me, is an O ora a 0 as index of array in this line of your code?
moreover as you can read here in the wiki http://www.qb64.org/wiki/ERASE (http://www.qb64.org/wiki/ERASE)
Dynamic arrays must be REDIMensioned if they are referenced after erased.
Dimension subprocedure arrays as STATIC to use ERASE and not have to REDIM.
so if Seat is a dynamic array before use Ubound you must REDIM it.
-
Hi
please say me, is an O ora a 0 as index of array in this line of your code?
moreover as you can read here in the wiki http://www.qb64.org/wiki/ERASE (http://www.qb64.org/wiki/ERASE)
so if Seat is a dynamic array before use Ubound you must REDIM it.
It's the letter O, as in Object. Variable O is SHARED, as I recall. Thanks.
-
So, if sometimes array exists and sometimes not, maybe try this method for array size test:
DIM c(5) AS LONG 'long = 4 bytes, records from 0 to 5 (6 records), so LEN = 24
PRINT LEN(c())
Or - if your code is used in SUB but array Seat is not SHARED, this can also do this error.
Edit:
If you use LEN on a field that does not exist, it will not return a value of 0, as you might expect, but a field value of 11 records. For example, if you write PRINT LEN (NotExists ()), you get a result of 44. The reason is that all variables in QB64 automatically get the assigned size of 10 (including 0) therefore 11 records. Well, if the "NotExists" field does not exist, QB64 counts with the default SINGLE type, which is 4 bytes per record * 11 = 44.
So instead of a complicated field existence test, would always leave it defined, allow a record of 0, and insert a value of 1 if I wanted to process the field, or a value of 0 if I didn't want to process the field. Or you can use an auxiliary variable, but again, that's pretty confusing when more are needed and it's an easy way how to go crazy... look to me... :)
I think I had Seat SHARED at one time, encountered errors that confused me, and ended up changing it. Much still confuses me, despite all the experience. Anything I don't do often tends to drift to the back of my mind, if not entirely out of my head.
Indeed, I try to avoid adding more variables whenever possible. In fact, I think it's due to my desire to reuse as much code as possible that my programs always seem to end up all twisty and complicated. I believe it was once called spaghetti code. Thanks for the input.