Numbers in Swift

This tutorial belongs to the Swift series

In Swift, numbers have 2 main types: Int and Double.

An Int is a number without decimal point.
A Double is a number with decimal point.

Both use 64 bits, on modern computers that work with 64 bits…


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

This tutorial belongs to the Swift series

In Swift, numbers have 2 main types: Int and Double.

An Int is a number without decimal point. A Double is a number with decimal point.

Both use 64 bits, on modern computers that work with 64 bits, and 32 bit on 32-bit platforms.

The range of values they can store depends on the platform used, and can be retrieved using the int property of each type:

Then, in addition to Int, UInt and Double, we have lots of other numeric types, mostly used to interact with APIs built in the past and that needed to interact with C or Objective-C, and you must be aware that we have them:

  • Int8 is an integer with 8 bits
  • Int16 is an integer with 16 bits
  • Int32 is an integer with 32 bits
  • Int64 is an integer with 64 bits

  • UInt8 is an unsigned integer with 8 bits

  • UInt16 is an unsigned integer with 16 bits

  • UInt32 is an unsigned integer with 32 bits

  • UInt64 is an unsigned integer with 64 bits

UInt is like Int, but unsigned, and its size depends on the current platform the code runs on.

Float is a decimal number with 32 bits.

Then using Cocoa APIs you might use other numeric types like CLong, CGFloat, and more.

You will always use Int or Double in your code, and use those specific types to particular cases.

Any of those types can always be converted to Int and Double types, instantiating a number passing the value inside parentheses to Double() or Int():

let age : UInt8 = 3
let intAge = Int(age)

You can also convert a number from Double to Int:

let age = Double(3)
let count = Int(3.14)


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2021-05-31T05:00:00+00:00) Numbers in Swift. Retrieved from https://www.scien.cx/2021/05/31/numbers-in-swift/

MLA
" » Numbers in Swift." flaviocopes.com | Sciencx - Monday May 31, 2021, https://www.scien.cx/2021/05/31/numbers-in-swift/
HARVARD
flaviocopes.com | Sciencx Monday May 31, 2021 » Numbers in Swift., viewed ,<https://www.scien.cx/2021/05/31/numbers-in-swift/>
VANCOUVER
flaviocopes.com | Sciencx - » Numbers in Swift. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/31/numbers-in-swift/
CHICAGO
" » Numbers in Swift." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2021/05/31/numbers-in-swift/
IEEE
" » Numbers in Swift." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2021/05/31/numbers-in-swift/. [Accessed: ]
rf:citation
» Numbers in Swift | flaviocopes.com | Sciencx | https://www.scien.cx/2021/05/31/numbers-in-swift/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.