Swift uses optionals to allow programmers to represent the possible absence of a value. Before attempting to use a value that may not exist, optionals allow the program to check first it it exists, then if it does exist unwrap and use it.
Any type can be made into an optional by appending a ?
onto the end of the type name. So an optional integer would have type Int?
and an optional string would have type String?
. Defining constants or variables of optional type and assigning them values is done the same as for values of non-optional types.
let x: Int? = 42
var y: String? = "Hello"
y = "Goodbye"
You can assign the absence of a value to a variable of optional type by assigning it the special value nil
. nil
can be used with all optional types, but nil
s assigned to two different optional types do not have the same type, and cannot be interchanged or even compared. E.g.
let intOpt: Int? = nil
let stringOpt: String? = nil
intOpt = stringOpt
// Compiler error: Cannot assign value of type 'String?' to type 'Int?'
intOpt == stringOpt
// Compiler error: Binary operator '==' cannot be applied to operands of type 'Int?' and 'String?'
An example of where optionals arise in Swift is in the initialization of Int
s and Double
s from strings. For example, you can convert the string "123"
to an integer by writing let newInt = Int("123")
. However, if you do this you will find that the type of newInt
is not Int
, but rather Int?
. This is because not all strings can sensibly be converted to Int
s. What should the result of Int("123.45")
or Int("horse")
be. In cases like this, where there is no sensible value to return, the conversion returns nil
, and so the return type must be Int?
.
Because optional types are not the same types as their base types, the two types cannot be used in the same ways. For example:
Int("123") + 1
results in a compiler error "Value of optional type 'Int?' must be unwrapped to a value of type 'Int'". In order to access the Int
from the conversion, one must "unwrap" it first.
This is most commonly done in Swift using the if-let
and guard-let
constructs for optional binding which check for nil
and take one code path with the unwrapped value bound to a supplied name if a value exists and taking a different code path if nil
was found.
if let num = Int("123") {
let sum = num + 1
β¦
} else {
// code for the case where nil was found -- may be left out
}
The guard-let
option may also be used in the cases where early return is desired:
guard let num = Int("123") else { return nil }
let sum = num + 1
β¦
Note that even if the base type of a pair of optionals can be compared using the standard comparison operators, the optionals themselves cannot be compared. They can only be checked for equality. two optionals are equal if they are both nil or if the values they wrap are equal within their base types.
However, code can of course, be written to perform a custom comparison of two optional values. Below is an example of a switch
statement that will return true
only if both optional values are non-nil and the first value is less than the second. To do this it uses the optional pattern varName?
which only matches non-nil optionals, binding the value inside the optional to the name varName
:
switch (optionalA, optionalB) {
case let (valA?, valB?): return valA < valB
default: return false
}
You have a number of pizza slice shops in your town and you want to write a webapp that will let you compare two different pizza configurations to let you know who will give you the bigger slice.
Implement the function, sliceSize(diameter: Double?, slices: Int?) -> Double?
, which, given the diameter of a pizza and the number of slices per pizza returns the area of a slice. For negative diameters and for number of slices less than 1, return nil, as there is no such thing as a pizza with negative diameter and no way to slice a pizza into fewer than 1 slice. If either parameter is nil
, also return nil
sliceSize(diameter: 16, slices: 12)
// => 16.75516081914556
sliceSize(diameter: nil, slices: 8)
// => nil
You web application will pass four strings to your function, biggestSlice(diameterA: String, slicesA: String, diameterB: String, slicesB: String) -> String
. The first and second strings are the diameter and number of slices of the first pizza respectively, and the third and fourth are the diameter and number of slices of the second pizza respectively.
Implement biggestSlice
so that it attempts to convert the diameter and number of slices for each pizza into a Double
and an Int
respectively if both of these values can be obtained from the strings, use your first function to try to compute the area, otherwise the area for that slice is nil
. Once the areas of both slices are obtained, compare the two areas using the following rules:
Double
and slice B's is nil
, return "Slice A is bigger". If the reverse is true, return "Slice B is bigger".Double
s, return "Slice A is bigger" or "Slice B is bigger" according to which slice has the greater area.nil
, or if both are Double
s and they are equal, return "Neither slice is bigger".biggestSlice(diameterA: "10", slicesA: "6", diameterB: "14", slicesB: "12")
// => Slice A is bigger
biggestSlice(diameterA: "10", slicesA: "6", diameterB: "12", slicesB: "8")
// => Slice B is bigger
biggestSlice(diameterA: "Pepperoni", slicesA: "6", diameterB: "Sausage", slicesB: "12")
// => Neither slice is bigger
Sign up to Exercism to learn and master Swift with 35 concepts, 101 exercises, and real human mentoring, all for free.