-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOOPs.java
432 lines (368 loc) · 10.8 KB
/
OOPs.java
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
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
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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/* A class is a template for an object, and an object is an instance of a class.
The data, or variables, defined within a class are called instance variables. The code is contained within methods.
Collectively, the methods and variables defined within a class are called members of the class.
Variables defined within a class are called instance variables because each instance of the class
(that is, each object of the class) contains its own copy of these variables.
Thus, the data for one object is separate and unique from the data for another.
The dot operator links the name of the object with the name of an instance variable. */
// Finding the volume of the box.
public class Main{
double width;
double height;
double depth;
public static void main(String args[]) {
Main mybox = new Main();
double vol;
mybox.width = 10;
mybox.height = 20;
mybox.depth = 15;
vol = mybox.width * mybox.height * mybox.depth;
System.out.println("Volume is " + vol);
}
}
// The new operator dynamically allocates (that is, allocates at run time) memory for an object and returns a reference to it.
// This reference is, more or less, the address in memory of the object allocated by new.
/* When you assign one object reference variable to another object reference variable,
you are not creating a copy of the object, you are only making a copy of the reference.*/
Box b1 = new Box();
Box b2 = b1;
b1 = null;
// Array of Objects
import java.util.*;
class Bank
{
String name;
int account_no;
String account_type;
double amount;
Bank(String n, int no, String t, double a)
{
name=n;
account_no=no;
account_type=t;
amount=a;
}
public void display()
{
System.out.println("Name: "+name);
System.out.println("Account Number: "+account_no);
System.out.println("Account Type: "+account_type);
System.out.println("Amount: "+amount);
}
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int accType,account_no;
String name, account_type="";
double amount;
Bank customer[]=new Bank[4];
for(int i=0;i<4;i++)
{
System.out.print("Enter name of customer "+(i+1)+": ");
name=sc.nextLine();
System.out.print("Enter account number of customer "+(i+1)+": ");
account_no=sc.nextInt();
System.out.print("Slect account_type of customer "+(i+1)+", 1 for savings and 2 for current: ");
accType=sc.nextInt();
if(accType==1)
account_type="Savings";
else if(accType==2)
account_type="Current";
System.out.print("Enter amount of customer "+(i+1)+": ");
amount=sc.nextDouble();
customer[i]=new Bank(name,account_no,account_type,amount);
}
for(int i=0;i<4;i++)
customer[i].display();
}
}
// Garbage Collection
public class TestGarbage1{
public void finalize(){
System.out.println("object is garbage collected");
}
public static void main(String args[]){
TestGarbage1 s1=new TestGarbage1();
TestGarbage1 s2=new TestGarbage1();
s1=null;
s2=null;
System.gc();
}
}
// Exceptions
// Try-Catch Exception Example
class Exception{
public static void main(String args[]){
int a, b;
try{
b = 0;
a = 10 / b;
System.out.println("This will not be printed.");
}
catch(ArithmeticException e){
System.out.println("Division by zero.");
}
System.out.println("After catch statement.");
}
}
// Multiple Catches
// When a = 0
class MultipleCatches{
public static void main(String args[]){
try{
int a = args.length;
System.out.println("a = " + a);
int b = 20 / a;
int c[] = {2};
c[10] = 50;
}
catch(ArithmeticException e){
System.out.println("Exception : " + e);
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("Exception : " + e);
}
System.out.println("After try-catch blocks.");
}
}
// When a is any other number other than 0.
class MultipleCatches{
public static void main(String args[]){
try{
int a = 1;
System.out.println("a = " + a);
int b = 20 / a;
int c[] = {2};
c[10] = 50;
}
catch(ArithmeticException e){
System.out.println("Exception : " + e);
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("Exception : " + e);
}
System.out.println("After try-catch blocks.");
}
}
// Executing both the exceptions using two try-catch exceptions.
class MultipleCatches{
public static void main(String args[]){
try{
int a = args.length;
System.out.println("a = " + a);
int b = 20 / a;
}
catch(ArithmeticException e){
System.out.println("Exception : " + e);
}
try{
int c[] = { 1, 6, 3 };
c[20] = 50;
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("Exception : " + e);
}
System.out.println("After try-catch blocks.");
}
}
// Another try-catch exception within a catch.
class MultipleCatches{
public static void main(String args[]){
try{
int a = args.length;
System.out.println("a = " + a);
int b = 20 / a;
}
catch(ArithmeticException e){
System.out.println("Exception : " + e);
try{
int c[] = { 1, 6, 3 };
c[20] = 50;
}
catch(ArrayIndexOutOfBoundsException x){
System.out.println("Exception : " + x);
}
}
System.out.println("After try-catch blocks.");
}
}
// Another try-catch exception within a Nested Try Statement
class MultipleCatches{
public static void main(String args[]){
try{
try{
int a = args.length;
System.out.println("a = " + a);
int b = 20 / a;
}
catch(ArithmeticException e){
System.out.println("Exception : " + e);
}
int c[] = { 1, 6, 3 };
c[20] = 50;
}
catch(ArrayIndexOutOfBoundsException x){
System.out.println("Exception : " + x);
}
System.out.println("After try-catch blocks.");
}
}
// Nested Try Statements
class NestedTry{
public static void main(String args[]){
try{
int a = 0;
int b = 20 / a;
System.out.println("a = " + a);
try{
if(a == 1){
a = a / (a - a);
}
if(a == 2){
int c[] = {1,3};
c[10] = 50;
}
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("Exception : " + e);
}
}
catch(ArithmeticException m){
System.out.println("Exception : " + m);
}
}
}
// Throw Exception Example
class Throw{
static void demo(){
try{
throw new NullPointerException("Null");
}
catch(NullPointerException e){
System.out.println("Exception Caught");
throw e;
}
}
public static void main(String args[]){
try{
demo();
}
catch(NullPointerException e){
System.out.println("Recaught : " + e);
}
}
}
// The Main Thread
class CurrentThreadDemo{
public static void main(String args[]){
Thread t =Thread.currentThread();
System.out.println("Current Thread : " + t);
t.setName("My Thread");
System.out.println("After name change : " + t);
try{
for(int n = 5; n > 0; n--){
System.out.println(n);
Thread.sleep(1000);
}
}
catch(InterruptedException e){
System.out.println("Main thread interrupted");
}
}
}
// Thread creating
class NewThread implements Runnable{
Thread t;
NewThread(){
t = new Thread(this, "Demo Thread");
System.out.println("Child thread : " + t);
t.start();
}
public void run(){
try{
for(int i = 5; i > 0; i--){
System.out.println("Child Thread : " + i);
Thread.sleep(500);
}
catch(TnterruptedException e){
System.out.println("Child Thread interrupted");
}
System.out.println("Existing Child Thread");
}
}
}
class ThreadDemo{
public static void main(String args[]){
new Thread();
try{
for (int i = 5; i > 0; i--){
System.out.println("Main Thread : " + i);
Thread.sleep(1000);
}
}
catch(InterruptedException e){
System.out.println("Main thread interrupted");
}
System.out.println("Main Thread existing");
}
}
//
public class TestInterruptingThread4 extends Thread{
public void run(){
for(int i=1;i<=2;i++){
if(Thread.interrupted()){
System.out.println("code for interrupted thread");
}
else{
System.out.println("code for normal thread");
}
}
}
public static void main(String args[]){
TestInterruptingThread4 t1=new TestInterruptingThread4();
TestInterruptingThread4 t2=new TestInterruptingThread4();
t1.start();
t1.interrupt();
t2.start();
}
}
//
class SetPriority{
public static void main(String[] args){
System.out.println("Before setting Priority of Main thread is " +
Thread.currentThread().getPriority());
Thread.currentThread().setPriority(6);
System.out.println(" After setting Priority of Main thread is " +
Thread.currentThread().getPriority());
}
}
// Generics
class Gen<T>{
T ob;
Gen(T o){
ob = o;
}
T getob(){
return ob;
}
vois showType(){
System.out.println("The type of T is " + ob.getClass().getName());
}
}
class GenDemo{
public static viod main(Sting args[]){
Gen<Integer> iob;
iob = new Gen<Integer>(54);
iob.showType();
int a = iob.getob();
System.out.println("Value : " + a);
System.out.println();
Gen<String> strob;
strob = new Gen<String>("Chandana");
strob.showType();
String name = strob.getob();
System.out.println("Name : " + name);
System.out.println();
}
}
//