169 похожих чатов

Hi guys, i'm always confused about array creation and array passing.

For example, if I want to pass an array of size 36 to a function of a different contract (parameter: uint[36] memory arrayName), I try to pass myArray which is defined as:
uint[36] memory myArray = new uint[](36);
Unfortunately, this does not compile:
TypeError: Type uint256[] memory is not implicitly convertible to expected type uint256[36] memory.
--> contracts/Contract.sol:105:9:
|
105 | uint[36] memory myArray = new uint[](36);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

I cannot figure out how to write that line. Can you help me please?

2 ответов

20 просмотров

perhaps uint[] memory myArray = new uint[](36); ?

Christoph-Flecht Автор вопроса

This only works if the other contract's function does not specify a size. But this one species the size to be 36. In this case, i get TypeError: Invalid type for argument in function call. Invalid implicit conversion from uint256[] memory to uint256[36] memory requested. in the line where i invoke the other contract's function if i then try to make the "conversion" explicit via uint256[36](myArray), i get: TypeError: Explicit type conversion not allowed from "uint256[] memory" to "uint256[36] memory".

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта