Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 QtCreator 中为断点设置更复杂的条件?(dbg) 至少比较 QStrings,但其他复杂类型也会很好。像教程中的整数比较工作正常。
右键单击断点(文本编辑器左侧的红球)并选择“编辑断点”之类的内容。然后会出现一个对话框,让您在断点上设置条件。
ctrl+单击或右键单击断点并选择编辑断点。
出现一个窗口,您可以在其中设置“条件”以及在调试器停止执行之前应该忽略多少次。
条件可以是您在条件 c++ 子句中编写的任何内容。
还有其他选项,例如您的目标是哪个线程。