# Solidity极简入门: 0. 写在前面


By [0xAA](https://paragraph.com/@wtfacademy) · 2022-04-14

---

我最近在重新学solidity，巩固一下细节，也写一个“Solidity极简入门”，供小白们使用（编程大佬可以另找教程），每周更新1-3讲。

欢迎关注我的推特：[@0xAA\_Science](https://twitter.com/0xAA_Science)

WTF技术社群discord，内有加微信群方法：[链接](https://discord.gg/5akcruXrsk)

所有代码和教程开源在github（1024个star发课程认证，2048个star发社群NFT）: [github.com/AmazingAng/WTFSolidity](https://github.com/AmazingAng/WTFSolidity)

* * *

第0讲，我总结一些学solidity需要的背景知识，包括代码风格、特殊变量等等，不断更新。

### 1\. Solidity代码风格

登链社区维护了solidity文档的中文翻译，其中一节是代码风格

[

风格指南 - Solidity 中文文档 - 登链社区
---------------------------

thisFunctionCallIsReallyLong(longArgument1, longArgument2, longArgument3 ); thisFunctionCallIsReallyLong(longArgument1, longArgument2, longArgument3 ); thisFunctionCallIsReallyLong( longArgument1,longArgument2, longArgument3 ); thisFunctionCallIsReallyLong( longArgument1, longArgument2, longArgument3 ); thisFunctionCallIsReallyLong( longArgument1, longArgument2, longArgument3);

https://learnblockchain.cn



](https://learnblockchain.cn/docs/solidity/style-guide.html)

### 2\. 全局变量：以太坊单位和特殊变量

---

*Originally published on [0xAA](https://paragraph.com/@wtfacademy/solidity-0)*
