Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't Swift provide classes memberwise initializers?

Tags:

ios

swift

Why are memberwise initialisers provided for structures only?

Do I need to write the initialisers by myself?

like image 850
aneuryzm Avatar asked Mar 16 '16 12:03

aneuryzm


1 Answers

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.

like image 130
Ole Begemann Avatar answered Nov 09 '22 20:11

Ole Begemann