我在Ubuntu上使用Qt.当我调试时,我只看到Locals和Watchers中数组的第一个值.如何查看所有数组内容?
struct node
{
int *keys;
void **pointers;
int num_keys;
struct node *parent;
int is_leaf;
struct node *nextLevelNode;
};
Run Code Online (Sandbox Code Playgroud)
它仅显示调试窗口中的第一个键值.