How could we get all the data of a big array in Debug Mode?
-
I create a QString array in program,but I can't view all the content of this array in debug mode,you can only get first 100 value of this array like this ,how could I view the data after 100th??Pic is like this.
-
Hi
In Creator 3.6, win 7, Qt5
it seems to show all ?What version / platform are you on.
-
This post is deleted!
-
@MartinChan
Ok, for test, could you make default project and try this code
QList<QString> list;
for (int var = 0; var < 200; ++var) {
list.append(QString::number(var));
}and then look at list in debugger and tell me if it also stops at 100.
-
@MartinChan
OK. I dont recall ever to have altered debugger settings for that so it must
be either Creator version or debugger.Im using mingw , what compiler do u have?
I will test when I come home, have same version there as you.
-
Could be a limitation of the Microsoft debugger
-
@MartinChan "Could it be some errors under MinGW environment but not under MSVC?" - what do you mean? Which compiler to use really depends on what you want to do. If you use libraries compiled using Microsoft compiler then you have to use same compiler. Else you can use MinGW.
-
Yes, just try