ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
STRUCT vs CLASS
Laurentiu Ungur, iOS Developer @P3-Digital Services
Why I should use a struct instead of a
class ?
1. POWERFUL
PROBLEM WITH SUBCLASSING ?
struct Vehicle {
let model: String
let price: Double
}
enum VehicleType {
case car(licensePlate: String)
case bicycle(chainRings: Int)
}
struct Vehicle {
let model: String
let price: Double
let type: VehicleType
}
let car = Vehicle(model: ¡°X¡±,
price: 200,
type: .car(licensePlate: ¡°CJ¡±))
let bicycle = Vehicle(model: ¡°A¡±,
price: 10,
type: .bicycle(chainRings: 100))
2. VALUE SEMANTICS
3. AUTOMATIC INITIALIZER
struct Car {
let brand: String
let model: String
let price: Double
}
struct Car {
let brand: String
let model: String
let price: Double
init(brand: String, model: String, price: Double) {
self.brand = brand
self.model = model
self.price = price
}
}
let myCar = Car(brand: ¡°Tesla¡±, model: ¡°S¡±, price: 100)
struct Car {
let brand: String
let model: String
let price: Double
}
let myCar = Car(brand: ¡°Tesla¡±, model: ¡°S¡±, price: 100)
4. SPEED
40x
Faster
Swift 1
github.com/knguyen2708/StructVsClassPerformance
37 000 000x
Faster
Swift 2 - Whole Module Optimization
github.com/knguyen2708/StructVsClassPerformance
14 000 000x
Faster
Swift 3 - Whole Module Optimization
github.com/knguyen2708/StructVsClassPerformance
Use final keyword
unsplash.com/collections/328902/cow
COW (Copy-On-Write)
let a = [1, 2, 3]
var b = a // not copied
b.append(4) // now it¡¯s copied
When I should use a struct ?
¡ñ The data will be used in code across multiple
threads
When I should use a struct ?
¡ñ The data will be used in code across multiple
threads
¡ñ Copies should have independent state
When I should use a struct ?
¡ñ The data will be used in code across multiple
threads
¡ñ Copies should have independent state
¡ñ Encapsulates a few relatively simply data
values
When I should use a class ?
¡ñ You want to create shared, mutable state
When I should use a class ?
¡ñ You want to create shared, mutable state
¡ñ You want to create complex frameworks like
Cocoa or Cocoa Touch
Still undecided ?
Design with struct as default,
fallback to class if it¡¯s really needed.
THANKS !

More Related Content

Viewers also liked (10)

³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
Kazunobu Tasaka
?
Swift 3 Programming for iOS : class and structure
Swift 3 Programming for iOS : class and structureSwift 3 Programming for iOS : class and structure
Swift 3 Programming for iOS : class and structure
Kwang Woo NAM
?
Swift 3 Programming for iOS: Function
Swift 3 Programming for iOS: FunctionSwift 3 Programming for iOS: Function
Swift 3 Programming for iOS: Function
Kwang Woo NAM
?
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Swift Tutorial Part 1. The Complete Guide For Swift Programming LanguageSwift Tutorial Part 1. The Complete Guide For Swift Programming Language
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Hossam Ghareeb
?
iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)
David Truxall
?
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - AptechGi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
MasterCode.vn
?
Structured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and DesignStructured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and Design
Motaz Saad
?
Learning.... Swift functions!
Learning.... Swift functions!Learning.... Swift functions!
Learning.... Swift functions!
Natasha Murashev
?
Swift Introduction
Swift IntroductionSwift Introduction
Swift Introduction
Natasha Murashev
?
Swift Programming Language
Swift Programming LanguageSwift Programming Language
Swift Programming Language
Giuseppe Arici
?
³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
³§·É¾±´Ú³Ù¤Ë¤ª¤±¤ë°ä±ô²¹²õ²õ¤È³§³Ù°ù³Ü³¦³Ù¤Îʹ¤¤·Ö¤±
Kazunobu Tasaka
?
Swift 3 Programming for iOS : class and structure
Swift 3 Programming for iOS : class and structureSwift 3 Programming for iOS : class and structure
Swift 3 Programming for iOS : class and structure
Kwang Woo NAM
?
Swift 3 Programming for iOS: Function
Swift 3 Programming for iOS: FunctionSwift 3 Programming for iOS: Function
Swift 3 Programming for iOS: Function
Kwang Woo NAM
?
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Swift Tutorial Part 1. The Complete Guide For Swift Programming LanguageSwift Tutorial Part 1. The Complete Guide For Swift Programming Language
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Hossam Ghareeb
?
iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)
David Truxall
?
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - AptechGi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
Gi¨¢o tr¨¬nh L?p tr¨¬nh C c?n b?n - Aptech
MasterCode.vn
?
Structured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and DesignStructured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and Design
Motaz Saad
?
Learning.... Swift functions!
Learning.... Swift functions!Learning.... Swift functions!
Learning.... Swift functions!
Natasha Murashev
?
Swift Programming Language
Swift Programming LanguageSwift Programming Language
Swift Programming Language
Giuseppe Arici
?

Similar to Struct vs Class in Swift (8)

Semantic search in databases
Semantic search in databasesSemantic search in databases
Semantic search in databases
Tom¨¢? Dren?¨¢k
?
#include iostream#include string#include iomanip#inclu.docx
#include iostream#include string#include iomanip#inclu.docx#include iostream#include string#include iomanip#inclu.docx
#include iostream#include string#include iomanip#inclu.docx
mayank272369
?
Scala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Scala Self Types by Gregor Heine, Principal Software Engineer at GiltScala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Scala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Gilt Tech Talks
?
Balancing Automation and Explanation in Machine Learning
Balancing Automation and Explanation in Machine LearningBalancing Automation and Explanation in Machine Learning
Balancing Automation and Explanation in Machine Learning
Databricks
?
R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?
Villu Ruusmann
?
Designing REST API automation tests in Kotlin
Designing REST API automation tests in KotlinDesigning REST API automation tests in Kotlin
Designing REST API automation tests in Kotlin
Dmitriy Sobko
?
Exam2prep
Exam2prepExam2prep
Exam2prep
Aditya Parakh
?
Ku bangkok sw-eng-dp-02_smart_board_strategypattern
Ku bangkok sw-eng-dp-02_smart_board_strategypatternKu bangkok sw-eng-dp-02_smart_board_strategypattern
Ku bangkok sw-eng-dp-02_smart_board_strategypattern
?????? ??
?
#include iostream#include string#include iomanip#inclu.docx
#include iostream#include string#include iomanip#inclu.docx#include iostream#include string#include iomanip#inclu.docx
#include iostream#include string#include iomanip#inclu.docx
mayank272369
?
Scala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Scala Self Types by Gregor Heine, Principal Software Engineer at GiltScala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Scala Self Types by Gregor Heine, Principal Software Engineer at Gilt
Gilt Tech Talks
?
Balancing Automation and Explanation in Machine Learning
Balancing Automation and Explanation in Machine LearningBalancing Automation and Explanation in Machine Learning
Balancing Automation and Explanation in Machine Learning
Databricks
?
R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?
Villu Ruusmann
?
Designing REST API automation tests in Kotlin
Designing REST API automation tests in KotlinDesigning REST API automation tests in Kotlin
Designing REST API automation tests in Kotlin
Dmitriy Sobko
?
Ku bangkok sw-eng-dp-02_smart_board_strategypattern
Ku bangkok sw-eng-dp-02_smart_board_strategypatternKu bangkok sw-eng-dp-02_smart_board_strategypattern
Ku bangkok sw-eng-dp-02_smart_board_strategypattern
?????? ??
?

Recently uploaded (20)

Code or No-Code Tests: Why Top Teams Choose Both
Code or No-Code Tests: Why Top Teams Choose BothCode or No-Code Tests: Why Top Teams Choose Both
Code or No-Code Tests: Why Top Teams Choose Both
Applitools
?
salesforce development services - Alt digital
salesforce development services - Alt digitalsalesforce development services - Alt digital
salesforce development services - Alt digital
Alt Digital Technologies
?
AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]
haroonsaeed605
?
Metaverse Meetup: Explore Mulesoft MAC Project
Metaverse Meetup: Explore  Mulesoft MAC ProjectMetaverse Meetup: Explore  Mulesoft MAC Project
Metaverse Meetup: Explore Mulesoft MAC Project
GiulioPicchi
?
AutoDesk Revit Crack | Revit Update 2025 free download
AutoDesk Revit Crack | Revit Update 2025 free downloadAutoDesk Revit Crack | Revit Update 2025 free download
AutoDesk Revit Crack | Revit Update 2025 free download
anamaslam971
?
LDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free DownloadLDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free Download
5ls1bnl9iv
?
Wondershare Filmora Crack Free Download
Wondershare Filmora  Crack Free DownloadWondershare Filmora  Crack Free Download
Wondershare Filmora Crack Free Download
zqeevcqb3t
?
Enscape Latest 2025 Crack Free Download
Enscape Latest 2025  Crack Free DownloadEnscape Latest 2025  Crack Free Download
Enscape Latest 2025 Crack Free Download
rnzu5cxw0y
?
A Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman BhaumikA Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman Bhaumik
Raman Bhaumik
?
Instagram Feed Snippet, Instagram posts display in odoo website
Instagram Feed Snippet, Instagram posts display in odoo websiteInstagram Feed Snippet, Instagram posts display in odoo website
Instagram Feed Snippet, Instagram posts display in odoo website
AxisTechnolabs
?
iTop VPN Latest Version 2025 Crack Free Download
iTop VPN Latest Version 2025 Crack Free DownloadiTop VPN Latest Version 2025 Crack Free Download
iTop VPN Latest Version 2025 Crack Free Download
lr74xqnvuf
?
Minitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free DownloadMinitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free Download
v3r2eptd2q
?
AI Agents and More:Build Your AI Assistans
AI Agents and More:Build Your AI AssistansAI Agents and More:Build Your AI Assistans
AI Agents and More:Build Your AI Assistans
HusseinMalikMammadli
?
Elastic Search Engineer Certification - Virtual
Elastic Search Engineer Certification - VirtualElastic Search Engineer Certification - Virtual
Elastic Search Engineer Certification - Virtual
Gon?alo Pereira
?
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
haroonsaeed605
?
How John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talkHow John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talk
Nacho Cougil
?
Account Cash Flow Statement Report Generate in odoo
Account Cash Flow Statement Report Generate in odooAccount Cash Flow Statement Report Generate in odoo
Account Cash Flow Statement Report Generate in odoo
AxisTechnolabs
?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
Ava Isley
?
Hire Odoo Developer ¨C OnestopDA Experts.
Hire Odoo Developer ¨C OnestopDA Experts.Hire Odoo Developer ¨C OnestopDA Experts.
Hire Odoo Developer ¨C OnestopDA Experts.
OnestopDA
?
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
Alluxio, Inc.
?
Code or No-Code Tests: Why Top Teams Choose Both
Code or No-Code Tests: Why Top Teams Choose BothCode or No-Code Tests: Why Top Teams Choose Both
Code or No-Code Tests: Why Top Teams Choose Both
Applitools
?
salesforce development services - Alt digital
salesforce development services - Alt digitalsalesforce development services - Alt digital
salesforce development services - Alt digital
Alt Digital Technologies
?
AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]
haroonsaeed605
?
Metaverse Meetup: Explore Mulesoft MAC Project
Metaverse Meetup: Explore  Mulesoft MAC ProjectMetaverse Meetup: Explore  Mulesoft MAC Project
Metaverse Meetup: Explore Mulesoft MAC Project
GiulioPicchi
?
AutoDesk Revit Crack | Revit Update 2025 free download
AutoDesk Revit Crack | Revit Update 2025 free downloadAutoDesk Revit Crack | Revit Update 2025 free download
AutoDesk Revit Crack | Revit Update 2025 free download
anamaslam971
?
LDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free DownloadLDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free Download
5ls1bnl9iv
?
Wondershare Filmora Crack Free Download
Wondershare Filmora  Crack Free DownloadWondershare Filmora  Crack Free Download
Wondershare Filmora Crack Free Download
zqeevcqb3t
?
Enscape Latest 2025 Crack Free Download
Enscape Latest 2025  Crack Free DownloadEnscape Latest 2025  Crack Free Download
Enscape Latest 2025 Crack Free Download
rnzu5cxw0y
?
A Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman BhaumikA Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman Bhaumik
Raman Bhaumik
?
Instagram Feed Snippet, Instagram posts display in odoo website
Instagram Feed Snippet, Instagram posts display in odoo websiteInstagram Feed Snippet, Instagram posts display in odoo website
Instagram Feed Snippet, Instagram posts display in odoo website
AxisTechnolabs
?
iTop VPN Latest Version 2025 Crack Free Download
iTop VPN Latest Version 2025 Crack Free DownloadiTop VPN Latest Version 2025 Crack Free Download
iTop VPN Latest Version 2025 Crack Free Download
lr74xqnvuf
?
Minitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free DownloadMinitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free Download
v3r2eptd2q
?
AI Agents and More:Build Your AI Assistans
AI Agents and More:Build Your AI AssistansAI Agents and More:Build Your AI Assistans
AI Agents and More:Build Your AI Assistans
HusseinMalikMammadli
?
Elastic Search Engineer Certification - Virtual
Elastic Search Engineer Certification - VirtualElastic Search Engineer Certification - Virtual
Elastic Search Engineer Certification - Virtual
Gon?alo Pereira
?
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
haroonsaeed605
?
How John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talkHow John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talk
Nacho Cougil
?
Account Cash Flow Statement Report Generate in odoo
Account Cash Flow Statement Report Generate in odooAccount Cash Flow Statement Report Generate in odoo
Account Cash Flow Statement Report Generate in odoo
AxisTechnolabs
?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
Ava Isley
?
Hire Odoo Developer ¨C OnestopDA Experts.
Hire Odoo Developer ¨C OnestopDA Experts.Hire Odoo Developer ¨C OnestopDA Experts.
Hire Odoo Developer ¨C OnestopDA Experts.
OnestopDA
?
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
AI/ML Infra Meetup | Building Production Platform for Large-Scale Recommendat...
Alluxio, Inc.
?

Struct vs Class in Swift