ぜのぜ

しりとりしようぜのぜのぜのぜ

138日目

日記

昨日の夜寝付けなかったので今めちゃくちゃ眠い.昼ご飯は遅めに食べたし明日は早く起きなきゃいけないのでもう寝ようか.

今日書いたコード

Treat identifiers that begin with an underscore as internal, even if their declaration has the public access-level modifier. https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID412

class C {
    public static let _prop = 0 // internal
    public static let prop = 1 // public
}

感想

_で始まる宣言はaccess-level modifierに限らずinternalとして扱われる.2021/9/20にそれが追記されたらしいけど読んだあとだっけ?

ところで,今日でThe swift programming languageを読み終わった.次は何を読もうか.HIGでもいいしKotlinとかAndroid界隈に流れるのもいいかなと思っている.