Operator 演算子

+(_:)

Returns the given number unchanged. 与えられた数を変更せずに返します。

Declaration 宣言

Return Value 戻り値

The given argument without any changes. 与えられた引数、全く変更なしに。

Discussion 議論

You can use the unary plus operator (+) to provide symmetry in your code for positive numbers when also using the unary minus operator. あなたは、単項加算演算子(+)を使って、対称性を正の数に対してあなたにコードにおいて提供できます、同様に単項減算演算子を使う時に。


let x = -21
let y = +21
// x == -21
// y == 21

See Also 参照

Comparing Scheduler Time Strides スケジューラ時間ストライドを比較する