Learn Solidity (0.5) - Inheritance (part 3)

preview_player
Показать описание
Learn how the order in which parent constructors are executed and how not to override state variables of a parent contract.

Code:

Рекомендации по теме
Комментарии
Автор

I have seen a bunch of tutorials on Solidity and yours is by far the best. You have a gift for teaching my friend. Thank you . :)

abirkar
Автор

Appreciate your precious sharing for the wrong ether sending. If you wish, please let us know more in details.

福瑞黃
Автор

Good series from constructor to inheritance, simple to complex 😻👍

salem
Автор

Amazing tutorials! Thanks a lot for all the time and effort you put in making these! Literally the clearest tutorials of the solidity basics I found (after watching A LOT of them).

pluckyou
Автор

Excellent video series on inheritance. Thanks very much!

edwassermann
Автор

Well explained! Thank you for making it easy to understand 👍

salem
Автор

I just wanted to know, that from parent Y, you have called variable _name, but it is inside the parent X, not Y. 2:22

nazi
Автор

out of those three ways, which is considered to be more secure?

pankajjoshi
Автор

Is it possible to change the state variables of a parent contract outside the constructor of a child contract?

johnhearn
Автор

At 7:20, In contract B, the wrong way can not to pass the compile in Solidity 0.8?

福瑞黃
Автор

Great videos!! Have a question - When we are calling contract E or F why is it that contract X is getting executed first. As per misunderstanding it should be from right to left (i.e Y should get executed first in both cases). Am i missing something

rwijupal
Автор

Definitely NOT a fan of having 3 different ways of calling a constructor with arguments. This goes back to the Perl (many ways to do the same thing) vs Python (should be ONE way to do ONE thing) battle. Why create more crap to learn?

MrCoreyTexas