Kotlin Visibility Modifier - open, private, protected, internal (the summary of the kotlin terms)
1. Public and Private kotlin's default : public. user define : private. private == only available inside of the scope if the private value is defined, the value can be used inside the particular class or the specific scope where the value had been defined. SUM : the useage of the private value inside of the class derived class : X main function : X can not use, unvisible 2. Protected protected==..
2022.05.28