是否可以在Java中连接赋值?

时间:2018-05-15 10:29:43

标签: java syntax variable-assignment

是否可以在一个语句中分配两个变量?

E.g。

this.edge = this.side = null;

1 个答案:

答案 0 :(得分:0)

添加一行不会花费太多,只需使用:

this.edge = null;
this.side = null;