立即窗口是否提供了一种显示原始数组的好方法?
我动态分配了一个数组,如下所示:
unsigned char **nonces=new unsigned char*[n_cases]
有没有办法在立即窗口中很好地打印出来?或者,让本地窗口正确显示它会很好。
I dynamically assigned an array as follows:
unsigned char **nonces=new unsigned char*[n_cases]
Is there a way to nicely print it out in the immediate window? Alternatively, it would be nice to make the locals window display it properly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C 数组的标准问题,即使调试器也不知道它们有多长。您必须使用像 nonces[0],12 这样的监视表达式来告诉它。您用 C++/CLI 标记了这一点,这不是托管数组的问题:
Standard problem with C arrays, not even the debugger can know how long they are. You have to tell it that with a watch expression like nonces[0],12. You tagged this with C++/CLI, it is not a problem with managed arrays: