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.
我对 eclipse 断点条件模式有疑问。关于这个代码片段
public void updateGateway(Gateway pGatewy) { mGateway = pGateway;
我只想在以下情况下停止该过程
pGateway.getNumber()==123.
但是条件无效,我用这个数字测试它已经成功(但没有条件)。
我必须在断点属性对话框的编辑器中插入什么?复选框 Conditional 被选中。
提前谢谢。
更新您的状况
到
pGateway.getNumber()==123
选择真时暂停选项。
条件调试可以在我的机器上运行。你可以参考这里。