Three accessor operators
Three particles. All pronounced de. All look like little attachment
points in a sentence — they glue something onto something else. But Chinese is
strict about which character to use for which kind of attachment, and the three
do structurally different jobs. Think of them as three different accessor operators
on three different types: one attaches modifiers to nouns, one attaches manner to
verbs, one attaches a result or degree to a verb.
In speech the distinction is invisible — every one of them is a neutral-tone de. In writing, pick the wrong character and a native reader will flinch. Even native speakers get 地 and 得 wrong on occasion, especially in casual text messages. This article is the decision table you reach for when you're about to type one and you're not sure which.
// Three accessors, same pinyin, different types. interface Attach { // adjective/noun/clause → noun "的": (mod: Modifier, head: Noun) => Noun; // adverb → verb (manner: how was it done?) "地": (mod: Adverb, v: Verb) => Verb; // verb → complement (result/degree: how did it turn out?) "得": (v: Verb, comp: Complement) => VerbPhrase; } // All three read /de/ aloud. The written form disambiguates.
1. The decision table
One glance should be enough. Match the shape of your sentence to a row, then pick the particle in column one.
| Particle | Attaches | To | Example | Gloss |
|---|---|---|---|---|
| 的 | adjective, noun, or clause | a noun (head) | 红的苹果 | a red apple |
| 的 | possessor | a noun (possessed) | 老师的书 | the teacher's book |
| 的 | relative clause | a noun (head) | 昨天来的朋友 | the friend who came yesterday |
| 地 | adverb / adjective-as-adverb | a verb | 慢慢地走 | walk slowly |
| 地 | adverb | a verb | 开心地笑 | laugh happily |
| 得 | a verb | a complement (degree) | 跑得很快 | runs very fast |
| 得 | a verb | a complement (result) | 笑得很开心 | laughs so happily |
| 得 | a verb | a complement (extent) | 吃得太多 | ate too much |
Mnemonic: 的 before a noun, 地 before a verb, 得 after a verb. That's the whole rule, position-first. The next three sections fill in the nuance.
2. 的 — the .property operator
的 is the workhorse. It attaches anything on its left to a noun on its right. The left side can be an adjective, another noun, a pronoun, or a full clause — whatever it is, 的 turns it into a modifier of the head noun.
[MODIFIER] 的 [NOUN] adj 红 的 苹果 red apple noun (possessor) 老师 的 书 teacher's book pronoun 我 的 电脑 my computer clause 他 写 的 书 the book he wrote
Possessive
我的书 wǒ de shū my book 中国的文化 Zhōngguó de wénhuà Chinese culture (lit. "China's culture")
Adjective marker
漂亮的花 piàoliang de huā beautiful flower 很贵的车 hěn guì de chē a very expensive car
Relative clauses
Chinese has no who, which, or that. 的 does the whole job. Put the entire clause in front of the noun, cap it with 的, done.
他写的书 tā xiě de shū the book (that) he wrote 昨天来的朋友 zuótiān lái de péngyou the friend who came yesterday 我最喜欢的电影 wǒ zuì xǐhuan de diànyǐng the movie I like best
3. 地 — the .manner operator
地 builds adverbs. You take an adjective (or a longer descriptive phrase), stick 地 on the end, and the whole thing now modifies a verb that follows. It answers the question how?
[ADJ] 地 [VERB] 慢 地 走 walk slowly 开心 地 笑 laugh happily 认真 地 学习 study seriously
Doubled adjectives soften the feel
It's very common to double the adjective before 地. The doubled form sounds gentler, more conversational, almost affectionate.
慢慢地走 mànmàn de zǒu walk slowly (gentle, encouraging — "take it easy") 高高兴兴地回家 gāogāoxìngxìng de huí jiā go home happily (warm, cheerful tone)
4. 得 — the .complement operator
得 sits after a verb and introduces a complement — a phrase that describes the verb's degree, manner, or result. If 地 says "how did you do it going in," 得 says "how did it turn out coming out."
[VERB] 得 [COMPLEMENT] 跑 得 快 runs fast (degree) 跑 得 很 快 runs very fast (degree) 笑 得 很 开心 laughs very happily (manner/result) 吃 得 太 多 ate too much (extent) 跑 得 汗流浃背 ran until drenched (result)
Potential complement — can / cannot
There's a second use: 得 (affirmative) and 不 (negative) slot between a verb and a result-describing word to express capability.
吃得完 chī de wán can finish eating (the food is finishable) 吃不完 chī bu wán cannot finish eating (too much food) 听得懂 tīng de dǒng can understand (by listening) 听不懂 tīng bu dǒng cannot understand
This potential complement pattern is a major topic in its own right. See the complements reference article for the full treatment.
5. Same words, three particles
The cleanest way to feel the distinction is to watch the same stem — run, fast, person — pass through each particle and end up meaning three different things.
他 跑 得 很 快。 tā pǎo de hěn kuài He runs very fast. → 得 attaches a degree complement to the verb 跑. 他 很 快 地 跑。 tā hěn kuài de pǎo He runs quickly. (focus on manner, often a one-time action) → 地 attaches the adverb "quickly" to the verb 跑. 他 是 跑 得 最 快 的 人。 tā shì pǎo de zuì kuài de rén He is the person who runs the fastest. → 得 attaches the degree complement 最快; 的 then nominalizes the whole clause 跑得最快 as a modifier of 人.
Notice the last sentence uses both 得 and 的 in a single clause. That's legal and common. They're doing different jobs: 得 attaches the extent to runs, and 的 attaches the whole runs-the-fastest phrase to person.
6. Common mistakes
他 高兴 地 笑 — correct (he laughs happily).他 高兴 的 笑 — textbook-wrong, though you will see it online.
我 跑 得 很 快。 — correct.我 跑 很 快。 — wrong as "I run fast." Without 得,
the sentence lacks the hook that ties fast to run.
吃 得 很 多 — eat a lot (degree).吃 了 很 多 — ate a lot (completed action with quantity).
7. Quick checklist
Before you commit to a particle, ask three questions in order:
| Question | If yes |
|---|---|
| Is a noun about to follow? | Use 的. |
| Is a verb about to follow, and am I describing how it's done? | Use 地. |
| Did a verb just happen, and I'm about to say how it went / how much? | Use 得. |
8. Next steps
- 把 construction — another structural particle, this one for method-call style object handling
- Complements reference — the full story on what follows 得, including potential complements
- Module 7: API Reference — the rest of the particle and structure reference articles
- Start a review session — drill these three particles in contrasting sentence pairs
Once the noun / verb-before / verb-after positional rule is automatic, the three des stop being one confusing sound and become three obvious accessors. Same pinyin, three jobs, one decision table.