Unity
[키워드] operator
JiHxxn
2024. 3. 17. 11:07
📜 information
- Operator(연산자)는 오버로딩(재정의) 하여 기능을 수정할 수 있다.
public struct Coord
{
public int x;
public int y;
public Coord(int _x, int _y)
{
x = _x;
y = _y;
}
public static bool operator ==(Coord c1, Coord c2)
{
return c1.x == c2.x && c1.y == c2.y;
}
public static bool operator !=(Coord c1, Coord c2)
{
return !(c1 == c2);
}
}
📖 참고 문서