什么是区块链?What is Blockchain?
区块链(Blockchain)说白了就是一种大家共同记账的技术。传统记账是银行一家人记,你得信它;区块链是把账本复制成成千上万份,分给全世界的电脑各存一份,谁也别想偷偷改。A blockchain is, put simply, a technology for keeping the books together. Traditional bookkeeping is done by a single bank that you have to trust; a blockchain copies the ledger into thousands of copies, stored on computers all over the world, so no one can secretly alter it.
之所以叫区块链,是因为交易记录被打包成一个个区块(block),一个接一个按时间顺序连成一条链(chain)。每个新区块里都带着上一个区块的指纹,环环相扣。It's called a blockchain because transaction records are packed into individual blocks, linked one after another in time order into a single chain. Each new block carries the fingerprint of the previous one, so they're all interlocked.
它有三个新手最该记住的特点:It has three traits a beginner should remember most:
- 公开透明:任何人都能查每一笔转账,谁都赖不掉;Open and transparent: anyone can look up every transfer, and no one can deny it;
- 难以篡改:想改一个区块,得同时改掉后面所有区块、还得说服全网大多数人,几乎不可能;Hard to tamper with: to change one block you'd have to change every block after it and convince the majority of the whole network — nearly impossible;
- 去中心化:没有一个老大说了算,规则写在代码里。Decentralized: no single boss calls the shots; the rules are written in code.
需要提醒的是:公开透明指的是交易记录公开,但账本上显示的是一串地址(像门牌号),不会直接写你的真实姓名,所以它是「匿名门牌 + 公开流水」的组合。One caveat: "open and transparent" means the transaction records are public, but what shows on the ledger is a string of addresses (like house numbers), not your real name — so it's a combination of "anonymous house number + public transaction history".
📝 本节测验📝 Quiz
1. 区块链最核心的思想是什么?1. What is the core idea of a blockchain?
2. 为什么区块链上的记录很难被篡改?2. Why are records on a blockchain so hard to tamper with?
3. 区块和链分别指什么?3. What do "block" and "chain" refer to respectively?
4. 关于区块链的公开性,下列说法正确的是?4. Regarding a blockchain's openness, which statement is correct?
5. 去中心化在区块链里意味着?5. What does decentralization mean in a blockchain?
❓ 常见问题❓ FAQ
区块链和数据库有什么区别?What's the difference between a blockchain and a database?
普通数据库通常由一家机构掌控、可随时增删改;区块链把账本分散给全网多方共同保存,记录一旦确认就极难更改,也不需要你去单方面信任某一家机构。An ordinary database is usually controlled by a single organization that can add, delete, or edit at any time; a blockchain spreads the ledger across many parties on the whole network to keep together, so once a record is confirmed it's extremely hard to change, and you don't have to unilaterally trust any one organization.
区块链上的信息真的完全匿名吗?Is information on a blockchain truly fully anonymous?
不完全。交易本身用地址代替真名,属于化名而非绝对匿名。如果地址通过交易所实名、或和你其他行为关联上,仍可能被追溯,务必自己核实(DYOR)。Not fully. Transactions use an address instead of your real name, which is pseudonymous rather than absolutely anonymous. If an address is tied to your real identity through an exchange, or linked to your other behavior, it can still be traced — always verify yourself (DYOR).
普通人能查区块链上的交易吗?Can ordinary people look up transactions on a blockchain?
能。通过区块浏览器输入任意地址或交易编号,就能看到余额和历史转账,全程公开免费,不需要注册。Yes. Using a block explorer, enter any address or transaction ID to see balances and transfer history — it's fully public and free, with no registration needed.