约 4,360 个结果
在新选项卡中打开链接
  1. Home | Solidity Programming Language

    Solidity is a statically-typed curly-braces programming language designed for developing smart contracts that run on Ethereum.

  2. Solidity — Solidity 0.8.30 documentation

    Solidity is statically typed, supports inheritance, libraries, and complex user-defined types, among other features. With Solidity, you can create contracts for uses such as voting, crowdfunding, …

  3. Introduction to Smart Contracts — Solidity 0.8.31 documentation

    A contract in the sense of Solidity is a collection of code (its functions) and data (its state) that resides at a specific address on the Ethereum blockchain. The line uint storedData; declares a …

  4. Solidity by Example — Solidity 0.8.31 documentation

    Solidity provides a built-in function ecrecover that accepts a message along with the r, s and v parameters and returns the address that was used to sign the message.

  5. Installing the Solidity Compiler — Solidity 0.8.31 documentation

    Docker images of Solidity builds are available using the solc image from the ethereum organization. Use the stable tag for the latest released version, and nightly for potentially …

  6. Solidity Forum - The place for all Solidity developers, tool builders ...

    2025年7月11日 · The place to discuss design and usage of and changes to the Solidity programming language.

  7. Cheatsheet — Solidity 0.8.31 documentation

    Cheatsheet Order of Precedence of Operators The following is the order of precedence for operators, listed in order of evaluation.

  8. Expressions and Control Structures — Solidity 0.8.31 documentation

    Solidity internally allows tuple types, i.e. a list of objects of potentially different types whose number is a constant at compile-time. Those tuples can be used to return multiple values at …

  9. Contracts — Solidity 0.8.31 documentation

    Solidity is similar to Python in that it uses C3 Linearization to force a specific order in the directed acyclic graph (DAG) of base classes. This results in the desirable property of monotonicity but …

  10. Types — Solidity 0.8.31 documentation

    Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. Solidity provides several elementary types which can be combined to …