连续实习生在序列图中调用

时间:2018-03-05 11:06:07

标签: uml diagram sequence-diagram

我正在创建一些序列图,我想详细说明我的调用,但是有一个类连续调用实习函数,如果我这样绘制就可以了:

enter image description here

如果不是我该怎么办?

谢谢!

1 个答案:

答案 0 :(得分:0)

不,这在语法上完全是错误的。你会使用循环片段:

enter image description here

deleteTodo(index){ const items = [...this.state.items]; items.splice(index, 1); this.setState({items}); } 是一个内部电话。在两个操作funcAfuncB内部将在一个由条件funcC保护的循环中调用。这也可能是some condition或任何限制循环。