diff --git a/lesson#19.2 - Inheriting from classes/inheritance diagram.png b/lesson#19.2 - Inheriting from classes/inheritance diagram.png new file mode 100644 index 0000000..df760d6 Binary files /dev/null and b/lesson#19.2 - Inheriting from classes/inheritance diagram.png differ diff --git a/lesson#19.2 - Inheriting from classes/inheritance.d b/lesson#19.2 - Inheriting from classes/inheritance.d new file mode 100644 index 0000000..4a2ea64 --- /dev/null +++ b/lesson#19.2 - Inheriting from classes/inheritance.d @@ -0,0 +1,46 @@ +module inheritance; + +// ****** Inheriting from Classes: Implementation Inheritance ****** +import std.stdio: writeln; + +class Person { + string id; + + void speak() { + writeln("Hello, world!"); + } +} + +class John: Person { + // inherits: string id; + + this(string s) { + id = s; + } + + // redifining the inherited speak function of Person + override void speak() { + super.speak(); // calling the default(Person's) speak function + writeln("Hi! My id is: ", id, "."); + } +} + +class Anna: Person { + // inherits: string id; + + this(string s) { + id = s; + } + + // Anna inherits the default implementation +} + + + + + + + + + + diff --git a/lesson#19.2 - Inheriting from classes/main.d b/lesson#19.2 - Inheriting from classes/main.d new file mode 100644 index 0000000..3c6642c --- /dev/null +++ b/lesson#19.2 - Inheriting from classes/main.d @@ -0,0 +1,16 @@ +import inheritance; + +void main() { + John john = new John("123456"); + john.speak(); + + Anna anna = new Anna("098700"); + anna.speak(); +} + +/* OUTPUT: + + Hello, world! + Hi! My id is: 123456. + Hello, world! +*/