A + B
A和B会销毁,所以用希望保留A和B的话,请使用A.clone() + B.clone()。
A and B will be consumed. If you want to reserve A and B, using A.clone() + B.clone() instead of A + B.
A & B
A和B会销毁,所以用希望保留A和B的话,请使用A.clone() & B.clone()。
A and B will be consumed. If you want to reserve A and B, using A.clone() & B.clone() instead of A & B.
A ^ B
A和B会销毁,所以用希望保留A和B的话,请使用A.clone() ^ B.clone()。
A and B will be consumed. If you want to reserve A and B, using A.clone() ^ B.clone() instead of A ^ B.
A - B
A和B会销毁,所以用希望保留A和B的话,请使用A.clone() - B.clone()。
A and B will be consumed. If you want to reserve A and B, using A.clone() - B.clone() instead of A - B.