UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

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?.

3      

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.

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.