Variables in Swift

2 min 12 sec read

Like human memory, Computer memory has millions of cells where it can store data or information. Now to retrieve information from those cells, each cell should be given one name called " variable name" These variables are most useful and can be of different types like integer, float, double, char, and strings.

Declare Variables in Swift

To declare variables in Swift "var" keyword is used. Semicolons are not compulsory in Swift Language. But remember if you add two statements in a single line you have to use ";" as the delimiter to separate them. Otherwise, it shows a syntax error.

Syntax

var variablename = Constant Value

Example

var name = "Manish"

Let's create a sample playground, Goto File > New > Playground > Next.

Example

import UIKit
var a = 20
print(a)

Run the program in the playground.

Output

You can declare multiple variables on a single line, separated by commas:

var x = 0.0, y = 0.0, z = 0.0

Type Annotations

Annotations are used to specify the type to variables. With the help of Type Annotations, it will be clear what kind of value that specific variable can store. And this can be done by placing a colon after the constant or variable name, followed by a space, followed by the name of the type to use.

Syntax

var variableName: = 

Example

var name: String
name = "Manish"

var varA,varB,varC: Float

How to use print statements in Swift?

//Playground - noun: a place where people can play

import UIKit

var name = "Manish"
var age = 23

print("(name) age is = (age)")

Output

Manish age is = 23
Previous Next




Codzify Web Stories

Upskill yourself!


Roadmap to Programming Languages

799 1999 /month


Course Duration: 3 Months.

Mode of Learning: You will get Weekly 3 recorded videos on Monday, Wednesday & Friday.

Live Doubt Sessions: Every Saturday 1 hour, you can opt-for live doubt session if required.

Practical Assignments: Daily practical Assignments to do based on the concepts you learnt in the class.

Things you'll learn: C, C++, Python Programming languages.

Learn More

Roadmap to become skilled Full Stack Web Developer

999 1999


8 hours on-demand video

Full lifetime access

Certificate of completion

Access on mobile and TV

Live Doubt Sessions: Every Saturday 1 hour, you can opt-for live doubt session if required.

Things you'll learn: Angular, HTML, CSS3, Javascript, Bootstrap 5, Server Side Scripting, Google backed Firebase, Authentication, Payment Methods & more.

Learn More