320x100
data class Tmp(val test: String) {}
fun Tmp.Companion.test() = 1
Companion 객체 확장함수를 만들려고 위와 같이 코드를 짜면
Unresolved reference: Companion
Unresolved reference라고 빨간줄이 뜬다.
data class Tmp(val test: String) {
companion object // add
}
Tmp 클래스에 확장시키려고 하는 Companion 객체가 없기 때문에 발생하는 에러다.
companion object 를 위와 같이 추가하여 해결한다.
320x100
'Back-End (web)' 카테고리의 다른 글
[kotlin] property, backing field (0) | 2021.02.04 |
---|---|
[Mono][Feign] 404 error custom throw (0) | 2020.08.16 |
[Querydsl] between 조건. LocalDate to LocalDateTime (0) | 2020.08.05 |
[intellij] google code 포매터 적용 (0) | 2020.07.11 |
[Spring] GatewayFilterFactory add Order (0) | 2020.07.02 |
댓글