연산자 오버로딩 & 기타 관례 코틀린이 지원하는 여러 관례(컨벤션)와 관례의 사용법 코틀린은 자바클래스를 사용하고 있음. 따라서 자바가 특정 인터페이스를 구현하게 할수는 없음 따라서 확장함수를 통해 기존클래스에 새로운 메서드를 추가한다. 이를 통해 기존 자바코드를 바꾸지 않고도 새로운 기능을 부여할수 있다. StringsJVM.kt (kotlin-stdlib) /** * Returns `true` if this string is equal to[other], optionally ignoring character case. * * Two strings are considered to be equal if they have the same length and the same character at the s..