惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 叶小钗
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - 司徒正美
博客园 - 【当耐特】
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Swift Structs — Computed Properties 🔮
Gamya · 2026-06-28 · via DEV Community

In the last article we built our first structs with stored properties — values that sit in memory and hold data directly. But Swift gives us a second, more dynamic option: computed properties — values that are calculated every time they're accessed, rather than stored. 🍥

Think of it like this: a stored property is like a lunchbox that holds your food. A computed property is like a vending machine — every time you press the button, it calculates and delivers the result fresh.


The Problem With Stored Properties Alone

Let's say we're tracking a ninja's chakra usage:

struct Ninja {
    let name: String
    var chakraRemaining: Int
}

var naruto = Ninja(name: "Naruto", chakraRemaining: 1000)
naruto.chakraRemaining -= 300
print(naruto.chakraRemaining) // 700
naruto.chakraRemaining -= 200
print(naruto.chakraRemaining) // 500

This works, but we're losing important information — we started with 1000 chakra, but once we start subtracting, we've lost track of the original amount. If someone asks "how much chakra has Naruto used?", we can't answer.


Enter Computed Properties

Instead of storing chakraRemaining directly, we can store the original amount and used amount separately, then compute what's remaining:

struct Ninja {
    let name: String
    var chakraTotal = 1000
    var chakraUsed = 0

    var chakraRemaining: Int {
        chakraTotal - chakraUsed
    }
}

Now chakraRemaining is a computed property — it looks like a regular property when you read it, but behind the scenes Swift is running code to calculate the value every time:

var naruto = Ninja(name: "Naruto", chakraTotal: 1000)
naruto.chakraUsed += 300
print(naruto.chakraRemaining) // 700 — calculated automatically!
naruto.chakraUsed += 200
print(naruto.chakraRemaining) // 500 — always up to date!

Notice: we never manually update chakraRemaining. It's always calculated fresh from chakraTotal and chakraUsed, so it's always accurate. 🎉


Getters and Setters

Right now our computed property is read-only — we can read chakraRemaining, but we can't write to it directly. If you tried:

naruto.chakraRemaining = 400 // ❌ won't compile

Swift would complain because it doesn't know how to handle that assignment. Should it change chakraTotal? Should it change chakraUsed? We haven't told it.

To make a computed property writable, we need to add both a getter (code that reads) and a setter (code that writes):

struct Ninja {
    let name: String
    var chakraTotal = 1000
    var chakraUsed = 0

    var chakraRemaining: Int {
        get {
            chakraTotal - chakraUsed
        }

        set {
            chakraTotal = chakraUsed + newValue
        }
    }
}

A few things to notice:

  • get { } — the code that runs when you read chakraRemaining
  • set { } — the code that runs when you write to chakraRemaining
  • newValue — automatically provided by Swift inside set, representing whatever value was assigned

So if someone sets naruto.chakraRemaining = 400, Swift runs the setter with newValue = 400, and updates chakraTotal accordingly.

Here it is in action:

var naruto = Ninja(name: "Naruto", chakraTotal: 1000)
naruto.chakraUsed += 300
print(naruto.chakraRemaining) // 700

naruto.chakraRemaining = 400  // using the setter
print(naruto.chakraTotal)     // 700 — updated automatically!


Stored vs Computed — Which Should You Use?

Now that you know both types exist, when do you reach for each one?

Use a stored property when:

  • The value doesn't depend on other properties
  • The property is read frequently and the value rarely changes
  • You want to store information that comes from outside (user input, API data, etc.)
struct Hero {
    let name: String       // stored — doesn't change
    var level: Int         // stored — set once, updated occasionally
}

Use a computed property when:

  • The value depends on other properties and should always stay in sync
  • The property is read rarely, so calculating it on demand is fine
  • You want the value to automatically reflect the current state
struct Hero {
    var baseAttack: Int
    var bonusAttack: Int

    var totalAttack: Int {  // computed — always baseAttack + bonusAttack
        baseAttack + bonusAttack
    }
}

The key insight: computed properties are great for derived values — things that can be calculated from data you already have. Instead of manually keeping two values in sync, you store the source data and let the computed property do the math automatically.


A Quick Note on Performance

Computed properties are recalculated every time you access them. For simple calculations like chakraTotal - chakraUsed, that's completely fine — it's almost instant.

But if your computed property did something expensive (like sorting a massive array), calling it thousands of times could slow things down. In those cases, a stored property (updated when needed) would be the smarter choice.

For everything you'll build early on, computed properties are perfectly efficient — just good to keep in the back of your mind as projects grow. 🌸


Why This Matters for SwiftUI

Computed properties are absolutely everywhere in SwiftUI. In fact, the very first thing you'll write in any SwiftUI project is this:

struct ContentView: View {
    var body: some View {
        Text("Hello, world!")
    }
}

That body property? It's a computed property. Every time SwiftUI needs to know what to display, it calls the body getter and gets back a fresh view. You're already using computed properties before you even know it! 🎉


Wrap Up

Concept What It Means
Stored property A value held in memory, assigned directly
Computed property A value calculated on the fly using code
get The code that runs when you read a computed property
set The code that runs when you write to a computed property
newValue The value being assigned, automatically available inside set

This article was written by me; AI was used to improve grammar and readability.