09-21-2025, 12:03 AM
|
for performance, what's the best variable type to use for boolean _TRUE & _FALSE ?
|
|
09-22-2025, 10:58 PM
@madscijr
about the citation of Steve educative program showing SPEED QB64pe rules thread from which it arises
09-29-2025, 02:59 PM
There are three factors here.
1. Quickest Load/Store at small scale In QB64, loading or storing a
2. Maximum problem size that can be handled A large array of type _BIT may fit in memory when an array with larger elements would not. Code: (Select All)
3. Cache Hits performance advantage When the "working set" of executable code and data fit entirely in cache, the program runs quicker. This may not matter for I/O bound programs, but certainly does for CPU bound programs.
|
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
|
|
Experimenting with a "StringList" type for simpler handling of string arrays/lists | Heimdall | 18 | 1,183 |
12-19-2025, 12:51 PM Last Post: Heimdall |
| performance drop on LINUX with PSET in v4.2 | Herve | 12 | 942 |
11-20-2025, 02:00 PM Last Post: SpriggsySpriggs |
|
| Loading from file into _MEM? and LEN a TYPE... | Unseen Machine | 9 | 958 |
08-03-2025, 02:55 AM Last Post: SMcNeill |
|
| Need help with boolean | Petr | 6 | 1,121 |
11-17-2024, 06:57 AM Last Post: TempodiBasic |
|
| QB64's TYPE / END TYPE inquiry | MystikShadows | 2 | 890 |
06-30-2024, 02:34 PM Last Post: MystikShadows |
|
Users browsing this thread: 1 Guest(s)


Duly noted...