BLACK FRIDAY SALE: Save 50% on all my Swift books and bundles! >>

SOLVED: Failable initalizers question 7

Forums > 100 Days of SwiftUI

class Camel {
    var humps: Int
    init?(humpCount: Int) {
        guard humpCount <= 2 else { return nil }
        humps = humpCount
    }
}
let horse = Camel(humpCount: 0)

isn't it will return nil?

guard humpCount <= 2 else { return nil }

in this code humpCount will give 0 and return nil. am ı wrong?

for this question(failable initalizers 7) paul wrote Oops – that's not correct. This will result in a constant that holds a Camel?.

1      

It will only return nil if humps is not less than or equal to 2. 0 is less than 2, so it will pass the guard condition and return a valid Camel object.

1      

Hacking with Swift is sponsored by Guardsquare

SPONSORED AppSweep by Guardsquare helps developers automate the mobile app security testing process with fast, free scans. By using AppSweep’s actionable recommendations, developers can improve the security posture of their apps in accordance with security standards like OWASP.

Learn more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.