Why doesn't Swift provide classes memberwise initializers?

后端 未结 1 1628
面向向阳花
面向向阳花 2020-12-18 03:04

Why are memberwise initialisers provided for structures only?

Do I need to write the initialisers by myself?

相关标签:
1条回答
  • 2020-12-18 03:58

    Do I need to write the initialisers by myself?

    Yes.

    A proposal to extend memberwise initializers to classes and make them more flexible has been discussed exhaustively on the Swift Evolution mailing list in Dec 2015/Jan 2016.

    Eventually, the proposal has been rejected for various reasons, with the possibility of revisiting the topic later (after Swift 3 is released).

    In the rejection, Chris Lattner noted at least one reason why memberwise initialization was offered specifically for structs: because it makes it possible to write pure "bags of properties", such as Vec4 or CGRect, with minimal overhead:

    2) Memberwise init sugar strongly benefits “POD” types and other “bags of property” types (e.g. “Vec4"), and many of the C struct types that Cocoa has (CGRect etc). In these cases, clients often want to initialize all of the fields explicitly and a memberwise init proposal eliminates this boilerplate. This case is what our existing feature attempts to service.

    Most classes are probably more complex, and you would want more control over the memberwise initializer, which would have made the feature much more complex, too.

    0 讨论(0)
提交回复
热议问题