Constructors
Defining Initial Values
constructor() {}contract Student {
uint256 age;
string name;
constructor(uint studentAge, string memory studentName) {
age = studentAge;
name = studentName;
}
}contract Student {
constructor(uint studentAge, string memory studentName) {
uint256 age = studentAge;
string memory name = studentName;
}
function getAge() public view returns(uint256) {
return age;
}
}Calling Parent Constructors
Resources
Last updated