Skip to main content

Access Modifier

internal

동일 '모듈' 내에서만 접근할 수 있게하는 지시자.

⚠️ Java에는 존재하지 않음.

Example

Directory Structure

Directory Structure

protected.it

Protected example code 서로 다른 패키지에서 접근 불가능.

internal.kt

Internal example code 동일 모듈 내에서 접근 가능

What's Module in kotlin?

"A module is a set of Kotlin files compiled together."

한번에 컴파일되는 코틀린 파일의 집합

동일 모듈의 예

Intellij IDEA 모듈

Same module


Reference