diff options
author | chriseth <chris@ethereum.org> | 2019-01-07 22:08:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 22:08:36 +0800 |
commit | ce0b7e98d155064fd7e8c5ce938992f8e8efab83 (patch) | |
tree | 212143a47b8fd4e530cbfe0e023e147973976911 | |
parent | 633228f1a74f9509af17ead951b0841fbffa12d3 (diff) | |
parent | 1da2c1f7e4a11f44a1a106088e2e99696658849a (diff) | |
download | dexon-solidity-ce0b7e98d155064fd7e8c5ce938992f8e8efab83.tar.gz dexon-solidity-ce0b7e98d155064fd7e8c5ce938992f8e8efab83.tar.zst dexon-solidity-ce0b7e98d155064fd7e8c5ce938992f8e8efab83.zip |
Merge pull request #5745 from ethereum/docs-split-cons
[DOCS] Split Constant State Variables doc
-rw-r--r-- | docs/contracts.rst | 36 | ||||
-rw-r--r-- | docs/contracts/constant-state-variables.rst | 35 |
2 files changed, 36 insertions, 35 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 746f6e00..c9adb03b 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -441,41 +441,7 @@ all symbols visible from the function are visible in the modifier. Symbols introduced in the modifier are not visible in the function (as they might change by overriding). -.. index:: ! constant - -************************ -Constant State Variables -************************ - -State variables can be declared as ``constant``. In this case, they have to be -assigned from an expression which is a constant at compile time. Any expression -that accesses storage, blockchain data (e.g. ``now``, ``address(this).balance`` or -``block.number``) or -execution data (``msg.value`` or ``gasleft()``) or makes calls to external contracts is disallowed. Expressions -that might have a side-effect on memory allocation are allowed, but those that -might have a side-effect on other memory objects are not. The built-in functions -``keccak256``, ``sha256``, ``ripemd160``, ``ecrecover``, ``addmod`` and ``mulmod`` -are allowed (even though, with the exception of ``keccak256``, they do call external contracts). - -The reason behind allowing side-effects on the memory allocator is that it -should be possible to construct complex objects like e.g. lookup-tables. -This feature is not yet fully usable. - -The compiler does not reserve a storage slot for these variables, and every occurrence is -replaced by the respective constant expression (which might be computed to a single value by the optimizer). - -Not all types for constants are implemented at this time. The only supported types are -value types and strings. - -:: - - pragma solidity >=0.4.0 <0.6.0; - - contract C { - uint constant x = 32**22 + 8; - string constant text = "abc"; - bytes32 constant myHash = keccak256("abc"); - } +.. include:: contracts/constant-state-variables.rst .. index:: ! functions diff --git a/docs/contracts/constant-state-variables.rst b/docs/contracts/constant-state-variables.rst new file mode 100644 index 00000000..3e615ed0 --- /dev/null +++ b/docs/contracts/constant-state-variables.rst @@ -0,0 +1,35 @@ +.. index:: ! constant + +************************ +Constant State Variables +************************ + +State variables can be declared as ``constant``. In this case, they have to be +assigned from an expression which is a constant at compile time. Any expression +that accesses storage, blockchain data (e.g. ``now``, ``address(this).balance`` or +``block.number``) or +execution data (``msg.value`` or ``gasleft()``) or makes calls to external contracts is disallowed. Expressions +that might have a side-effect on memory allocation are allowed, but those that +might have a side-effect on other memory objects are not. The built-in functions +``keccak256``, ``sha256``, ``ripemd160``, ``ecrecover``, ``addmod`` and ``mulmod`` +are allowed (even though, with the exception of ``keccak256``, they do call external contracts). + +The reason behind allowing side-effects on the memory allocator is that it +should be possible to construct complex objects like e.g. lookup-tables. +This feature is not yet fully usable. + +The compiler does not reserve a storage slot for these variables, and every occurrence is +replaced by the respective constant expression (which might be computed to a single value by the optimizer). + +Not all types for constants are implemented at this time. The only supported types are +value types and strings. + +:: + + pragma solidity >=0.4.0 <0.6.0; + + contract C { + uint constant x = 32**22 + 8; + string constant text = "abc"; + bytes32 constant myHash = keccak256("abc"); + } |