mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
commit
e8bef6fc01
@ -291,6 +291,27 @@ So `bytes` should always be preferred over `byte[]` because it is cheaper.
|
|||||||
that you are accessing the low-level bytes of the utf-8 representation,
|
that you are accessing the low-level bytes of the utf-8 representation,
|
||||||
and not the individual characters!
|
and not the individual characters!
|
||||||
|
|
||||||
|
.. index:: ! array;allocating, new
|
||||||
|
|
||||||
|
Allocating Memory Arrays
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Creating arrays with variable length in memory can be done using the `new` keyword.
|
||||||
|
As opposed to storage arrays, it is **not** possible to resize memory arrays by assigning to
|
||||||
|
the `.length` member.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
contract C {
|
||||||
|
function f(uint len) {
|
||||||
|
uint[] memory a = new uint[](7);
|
||||||
|
bytes memory b = new bytes(len);
|
||||||
|
// Here we have a.length == 7 and b.length == len
|
||||||
|
a[6] = 8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.. index:: ! array;length, length, push, !array;push
|
.. index:: ! array;length, length, push, !array;push
|
||||||
|
|
||||||
Members
|
Members
|
||||||
|
Loading…
Reference in New Issue
Block a user