Skip to content

Instantly share code, notes, and snippets.

@trukhinyuri
Created March 15, 2012 07:08
Show Gist options
  • Select an option

  • Save trukhinyuri/2042672 to your computer and use it in GitHub Desktop.

Select an option

Save trukhinyuri/2042672 to your computer and use it in GitHub Desktop.
OptionalGettersSetters
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