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.
如何阻止 APEX 在某一行执行代码,
例如:
在 C 中我们有
退出(-2);
在 Fortran 中,我们有
停止
APEX 中的等效命令是什么
我刚用过:
System.assert(false);
它做我想要的,
感谢大家
如果您在 visualforce 页面控制器上,则在 pagereference 方法中返回 null 将在该点停止执行。如果您在触发器添加错误方法或抛出自定义异常消息将停止执行。有一个 break 语句有助于退出循环。
如果你想停止运行一个方法,return;或者return null;如果你在一个返回值的方法中。
return;
return null;