Why doesn't Kotlin have any keyword like synchroni...
# announcements
m
Why doesn't Kotlin have any keyword like synchronized for synchronization? Why do they ask us to use @Synchronized annotation?
e
It does not imbue a declaration with any language semantics. There is no difference between synchronized/non-synchronized from the language standpoint. It only changes runtime semantics.
m
Thank you for your quick reply.