공부 좀 하자/Unity C# 기초
6.연산자(복합 대입)
개발성문
2022. 8. 3. 12:14
- 복합 대입 연산자는 연산(+, -, *, /, %) 과 대입(=) 을 합친 것입니다.
- 식을 간결하게 하는 장점이 있습니다.
- +=, -=, *=, /=, %=
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ClassDefault : MonoBehaviour
{
int op1 = 412;
// Start is called before the first frame update
void Start()
{
op1 = op1 + 2;
// 위의 식을 아래와 같이 줄입니다.
op1 += 2;
op1 -= 2;
op1 *= 2;
op1 /= 2;
op1 %= 2;
}
// Update is called once per frame
void Update()
{
}
}