【发布时间】:2011-09-23 19:25:51
【问题描述】:
我在 Ubuntu 上使用 Qt。当我调试时,我只在 Locals 和 Watchers 中看到数组的第一个值。如何查看所有数组内容?
struct node
{
int *keys;
void **pointers;
int num_keys;
struct node *parent;
int is_leaf;
struct node *nextLevelNode;
};
它只显示调试窗口中的第一个键值。
【问题讨论】:
标签: c++ qt qt-creator