forked from smartherd/DartTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intermediate.dart
109 lines (89 loc) · 2.58 KB
/
intermediate.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// #########################################################// Exception Handling
// void main() {
// UmairException err = UmairException();
// try {
// cashDeposit(25);
// } catch (e) {
// print(err.errormessage());
// } finally {
// print('Hello');
// }
// }
// class UmairException implements Exception {
// String errormessage() => 'Enter valid amount';
// }
// void cashDeposit(int money) {
// if (money < 0) {
// throw UmairException();
// } else {
// print('Keep going');
// }
// }
// ####################################################
// ####################################################// Class and Objects
// class Student {
// String? stdName;
// int? stdAge;
// int? stdRollNu;
// showStdInfo() {
// print("Student Name is : $stdName");
// print("Student Age is : $stdAge");
// print("Student Roll Number is : $stdRollNu");
// }
// }
// void main() {
// var std = Student();
// std.stdName = 'umair';
// std.stdAge = 89;
// std.stdRollNu = 3;
// std.showStdInfo();
// }
// ##########################################
// ##################################################### Abstract Class
// abstract class Employee {
// void showEmployeeInformation();
// }
// class Teacher extends Employee {
// @override
// void showEmployeeInformation() => "I'm a teacher";
// }
// class Principal extends Employee {
// @override
// void showEmployeeInformation() => "I'm the principal.";
// }
// void main() {
// Teacher teacher = Teacher();
// Principal principal = Principal();
// teacher.showEmployeeInformation();
// principal.showEmployeeInformation();
// }
// ##########################################################
// ########################################// Inheritance
// class Gfg {
// void output1() =>
// "Welcome to gfg!!\nYou are inside the output function of Gfg class.";
// }
// class GfgChild1 extends Gfg {
// void output2() =>
// "Welcome to gfg!!\nYou are inside the output function of GfgChild1 class.";
// }
// class GfgChild2 extends GfgChild1 {}
// void main() {
// var geek = GfgChild2();
// geek.output1();
// geek.output2();
// }
// ##########################################
// ##########################################// Polymorphism
// class Human {
// void run() => "Human is running";
// }
// class Man extends Human {
// @override
// void run() => "Man is running";
// }
// void main() {
// Man m = Man();
// m.run();
// }
// ##########################################################