QList
QList copied to clipboard
Maximum size of a queue
What is the maximum size of a queue defined ? Can we define a size ? What if the size exceeds more than the memory available on SRAM ?
Hi, array size limit depends on size of RAM that chip has and object size that you store in array. If size exceeds more memory than available it will probably leed to undefined behaviour.
How is array size relevant here? QList is a linked list without any heap or array usage. I'm generally wondering where the items are stored and why this appears to work. I don't think it should.