Is there any function or something like that by which I can create totally random strings or numbers?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can create random numbers using qrand. If you need strings, you can convert the int to string. You could also check the QUuid class, which generates Universally Unique Identifiers. Those are not 'totally random', but they are unique. |
|||
|
|
returns a random number a, 0 <= a < number. qrand function is declared in QtGlobal which is included many other Qt files.
converts an integer to QString. |
|||
|
|