개발성문

8.연산자(비교/관계) 본문

공부 좀 하자/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()
    {
        
    }
}

'공부 좀 하자 > Unity C# 기초' 카테고리의 다른 글

13. 조건문 - if  (0) 2022.08.03
10. 문자열 사용되는 연산자 +  (0) 2022.08.03
9.연산자(논리)  (0) 2022.08.03
7.연산자(증감)  (0) 2022.08.03
6.연산자(복합 대입)  (0) 2022.08.03
Comments