Created
March 15, 2012 07:08
-
-
Save trukhinyuri/2042672 to your computer and use it in GitHub Desktop.
OptionalGettersSetters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var allByDefault : Int? // ошибка: требуется явный инициализатор, геттеры и сеттеры по умолчанию | |
| var initialized = 1 // тип Int, геттеры и сеттеры по умолчанию | |
| var setterVisibility : String = "abc" // Используется инициализатор, не null | |
| private set // Сеттер приватный и имеет реализацию по умолчанию |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment