Replies: 2 comments
-
infix 연산자는 중위 연산자로 불리며, |
Beta Was this translation helpful? Give feedback.
0 replies
-
infix중위 함수 호출을 가능하게 해준다. 일반적으로 함수 호출시 // infix
infix fun Int.add(value: Int) : Int = this + value 예시로 코틀린의 A to B로 사용할 수 있는 것도 infix 키워드가 있기 때문임 → to라는 Infix가 이미 만들어져있음 규칙
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
infix 는 다음 요구사항을 충족해야 사용할 수 있습니다.
장점
Beta Was this translation helpful? Give feedback.
All reactions