├── Abstraction
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ └── workspace.xml
├── Abstraction.iml
├── out
│ └── production
│ │ └── Abstraction
│ │ ├── Animal.class
│ │ ├── Dog.class
│ │ └── Test.class
└── src
│ └── Test.java
├── CompileTimePolymorphism
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ └── workspace.xml
├── CompileTimePolymorphism.iml
├── out
│ └── production
│ │ └── CompileTimePolymorphism
│ │ ├── AddNumbers.class
│ │ └── Mathematics.class
└── src
│ └── Mathematics.java
├── Encapsulation
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ └── workspace.xml
├── Encapsulation.iml
├── out
│ └── production
│ │ └── Encapsulation
│ │ └── Demo.class
└── src
│ └── Demo.java
├── Inheritance
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ └── workspace.xml
├── Inheritance.iml
├── out
│ └── production
│ │ └── Inheritance
│ │ ├── Animal.class
│ │ ├── Dog.class
│ │ └── Test.class
└── src
│ └── Test.java
├── README.md
└── RunTimePolymoraphism
├── .idea
├── misc.xml
├── modules.xml
└── workspace.xml
├── RunTimePolymoraphism.iml
├── out
└── production
│ └── RunTimePolymoraphism
│ ├── Animal.class
│ ├── Dog.class
│ ├── Puppy.class
│ └── Test.class
└── src
└── Test.java
/Abstraction/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Abstraction/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Abstraction/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 | true
55 | DEFINITION_ORDER
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 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 | 1521819657555
223 |
224 |
225 | 1521819657555
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
--------------------------------------------------------------------------------
/Abstraction/Abstraction.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Abstraction/out/production/Abstraction/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Abstraction/out/production/Abstraction/Animal.class
--------------------------------------------------------------------------------
/Abstraction/out/production/Abstraction/Dog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Abstraction/out/production/Abstraction/Dog.class
--------------------------------------------------------------------------------
/Abstraction/out/production/Abstraction/Test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Abstraction/out/production/Abstraction/Test.class
--------------------------------------------------------------------------------
/Abstraction/src/Test.java:
--------------------------------------------------------------------------------
1 | abstract class Animal{
2 | private int age;
3 | abstract void eat();
4 |
5 | void sleep(){
6 | System.out.println("Animal is sleeping...");
7 | }
8 |
9 | }
10 |
11 | class Dog extends Animal{
12 | void eat(){
13 | System.out.println("Dog is eating...");
14 | }
15 | }
16 |
17 | class Test {
18 | public static void main(String args[]){
19 | Animal a = new Dog();
20 | a.eat(); // Executed with overriding
21 | a.sleep(); // Executed without overriding
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/CompileTimePolymorphism/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/CompileTimePolymorphism/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/CompileTimePolymorphism/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 | true
57 | DEFINITION_ORDER
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 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 | 1521815942102
225 |
226 |
227 | 1521815942102
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
--------------------------------------------------------------------------------
/CompileTimePolymorphism/CompileTimePolymorphism.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/CompileTimePolymorphism/out/production/CompileTimePolymorphism/AddNumbers.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/CompileTimePolymorphism/out/production/CompileTimePolymorphism/AddNumbers.class
--------------------------------------------------------------------------------
/CompileTimePolymorphism/out/production/CompileTimePolymorphism/Mathematics.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/CompileTimePolymorphism/out/production/CompileTimePolymorphism/Mathematics.class
--------------------------------------------------------------------------------
/CompileTimePolymorphism/src/Mathematics.java:
--------------------------------------------------------------------------------
1 | class AddNumbers {
2 |
3 | // method with 2 integer parameters
4 | public int addition(int x, int y){
5 | return x+y;
6 | }
7 | // method with 3 integer parameters
8 | public int addition(int x, int y, int z){
9 | return x+y+z;
10 | }
11 | // method with 2 integer and double parameters
12 | public int addition(double x, int y){
13 | return (int)x+y; //casting
14 | }
15 | }
16 |
17 | class Mathematics{
18 | public static void main(String args[]){
19 | AddNumbers a1 = new AddNumbers();
20 | System.out.println(a1.addition(1,2));
21 | System.out.println(a1.addition(1,2, 3));
22 | System.out.println(a1.addition(3,4));
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Encapsulation/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Encapsulation/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Encapsulation/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 | true
53 | DEFINITION_ORDER
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 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 | 1521410453709
248 |
249 |
250 | 1521410453709
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 | No facets are configured
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 | 1.8
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 | Encapsulation
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
--------------------------------------------------------------------------------
/Encapsulation/Encapsulation.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Encapsulation/out/production/Encapsulation/Demo.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Encapsulation/out/production/Encapsulation/Demo.class
--------------------------------------------------------------------------------
/Encapsulation/src/Demo.java:
--------------------------------------------------------------------------------
1 | import java.util.*;
2 | import java.io.*;
3 |
4 | class Demo{
5 | public static void main(String []argh){
6 | Scanner in = new Scanner(System.in);
7 | int t=in.nextInt();
8 | for(int i=0;i
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Inheritance/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Inheritance/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 | true
58 | DEFINITION_ORDER
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 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 | 1521812476907
250 |
251 |
252 | 1521812476907
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
--------------------------------------------------------------------------------
/Inheritance/Inheritance.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Inheritance/out/production/Inheritance/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Inheritance/out/production/Inheritance/Animal.class
--------------------------------------------------------------------------------
/Inheritance/out/production/Inheritance/Dog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Inheritance/out/production/Inheritance/Dog.class
--------------------------------------------------------------------------------
/Inheritance/out/production/Inheritance/Test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/Inheritance/out/production/Inheritance/Test.class
--------------------------------------------------------------------------------
/Inheritance/src/Test.java:
--------------------------------------------------------------------------------
1 | class Animal{
2 | int age = 5;
3 | void eat(){
4 | System.out.println("Animal eats");
5 | }
6 | void sleep(){
7 | System.out.println("Animal sleeps");
8 | }
9 | }
10 | class Dog extends Animal{
11 | void bark(){
12 | System.out.println("Dog barks");
13 | }
14 | }
15 |
16 | class Test{
17 | public static void main(String args[]){
18 | Dog dog = new Dog();
19 | // call methods from super class
20 | dog.sleep();
21 | dog.eat();
22 | // call method from sub class
23 | dog.bark();
24 | // get attribute value from super class
25 | System.out.println("Age : " + dog.age);
26 |
27 | }
28 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Java-OOP
2 | ### Example applications done using Object Oriented Programming in JAVA..
3 |
4 |
5 | 
6 |
7 |
--------------------------------------------------------------------------------
/RunTimePolymoraphism/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/RunTimePolymoraphism/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/RunTimePolymoraphism/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 | true
58 | DEFINITION_ORDER
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 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 | 1521806712252
226 |
227 |
228 | 1521806712252
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
--------------------------------------------------------------------------------
/RunTimePolymoraphism/RunTimePolymoraphism.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Animal.class
--------------------------------------------------------------------------------
/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Dog.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Dog.class
--------------------------------------------------------------------------------
/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Puppy.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Puppy.class
--------------------------------------------------------------------------------
/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SalithaUCSC/Java-OOP/873615205c67d185296c7f525a469acec6209663/RunTimePolymoraphism/out/production/RunTimePolymoraphism/Test.class
--------------------------------------------------------------------------------
/RunTimePolymoraphism/src/Test.java:
--------------------------------------------------------------------------------
1 | class Animal {
2 | // most super class method
3 | public void eat(){
4 | System.out.println("Animal eats food");
5 | }
6 | }
7 |
8 | class Dog extends Animal{
9 | // dynamic method dispatch happens to this method
10 | public void eat() {
11 | System.out.println("Dog eats meat");
12 | }
13 | }
14 |
15 | class Puppy extends Dog{
16 | // dynamic method dispatch happens to this method
17 | public void eat() {
18 | System.out.println("Puppy drinks milk");
19 | }
20 | }
21 |
22 | class Test{
23 | public static void main(String args[]){
24 | // create reference variables
25 | Animal a1, a2, a3;
26 | System.out.println("-----No Dynamic method dispatch-----");
27 | a1 = new Animal();
28 | a1.eat();
29 | System.out.println("-----Dynamic method dispatch-----");
30 | a2 = new Dog();
31 | a3 = new Puppy();
32 |
33 | a2.eat();
34 | a3.eat();
35 | }
36 | }
--------------------------------------------------------------------------------