Solidity - For and While Loop
Solidity supports for, while, and do while loops. Solidity 언어는 for문, while문 do while 문등을 지원합니다. 즉 반복문을 지원합니다. Don't write loops that are unbounded as this can hit the gas limit, causing your transaction to fail. 무한 루프를 작성하지 마십시오. 가스 한계에 도달하여 거래가 실패할 수 있습니다. 솔리디티에서 무한루프를 사용하면 가스 비용은 무한대로 비용이 들 수 있습니다. For the reason above, while and do while loops are rarely used. 위의 이유로 while and do while 루프는 거의..
Programming Language/Solidity
2022. 12. 23. 19:12