공부 좀 하자/Unity C# 기초
8.연산자(비교/관계)
개발성문
2022. 8. 3. 12:41
이번 비교연산자는 보다 작다, 크거나 같다, 같다 등 피연산자 2개를 서로 비교하는 연산자입니다.
또는 관계형 연산자라고도 표현합니다.
>, < , ==, <=, >= 기호를 사용하며, 결과로 bool(Boolean) 타입의 True(참), False(거짓) 값을 반환합니다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ClassDefault : MonoBehaviour
{
int op1 = 38;
int op2 = 7;
// Start is called before the first frame update
void Start()
{
print(op1 > op2);
print(op1 < op2);
print(op1 == op2);
}
// Update is called once per frame
void Update()
{
}
}