1. Consider the following lines of coding written in Java, Your teacher went through similar type of example in the class to show some of the drawbacks of this type of programming, can you write those drawbacks. Also will this program compile? If not which lines you need to change, can you avoid those changes by using some technique taught in the class? 1- class Test { 3 private Object t; 4 public Object get() { return t; } 6. public void set(Object t) { this.t = t; } 10 11 12 } 13 14 - public class Main { public static void main(String args[]){ Test type = new Test(); type.set("Quiz 6"); String str = type.get(); type.set(6); int number= type.get(); System.out.println(str); System.out.println(number); 15- 16 17 18 19 20 21 22 23 24 } 2. Can you write down the Generic Class version of Test class written above with the driver class Main as well?

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Answer the questions in picture:

1. Consider the following lines of coding written in Java, Your teacher went through similar
type of example in the class to show some of the drawbacks of this type of programming,
can you write those drawbacks. Also will this program compile? If not which lines you
need to change, can you avoid those changes by using some technique taught in the class?
1 class Test {
private Object t;
3
4.
public Object get() {
return t;
}
5-
7
public void set(Object t) {
this.t = t;
}
9-
10
11
12 }
13
14 - public class Main {
public static void main(String args[]){
Test type = new Test();
type.set("Quiz 6");
String str = type.get();
type.set(6);
int number= type.get();
System.out.println(str);
System.out.println(number);
}
15
16
17
18
19
20
21
22
23
24 }
2. Can you write down the Generic Class version of Test class written above with the driver
class Main as well?
Transcribed Image Text:1. Consider the following lines of coding written in Java, Your teacher went through similar type of example in the class to show some of the drawbacks of this type of programming, can you write those drawbacks. Also will this program compile? If not which lines you need to change, can you avoid those changes by using some technique taught in the class? 1 class Test { private Object t; 3 4. public Object get() { return t; } 5- 7 public void set(Object t) { this.t = t; } 9- 10 11 12 } 13 14 - public class Main { public static void main(String args[]){ Test type = new Test(); type.set("Quiz 6"); String str = type.get(); type.set(6); int number= type.get(); System.out.println(str); System.out.println(number); } 15 16 17 18 19 20 21 22 23 24 } 2. Can you write down the Generic Class version of Test class written above with the driver class Main as well?
3. Suppose by using the Class Test we write a function isEqual() in CompareTest class to
compare two objects that returns true if they are equal otherwise return false in the
following way.
1- class Test {
r Rahm
private Object t;
public Object get() {
return t;
}
5-
6.
7
8.
public void set(Object t) {
this.t = t;
}
9-
10
11
12 }
13
S com
14 - class CompareTest {
public static boolean isEqual(Test g1, Test g2){
return g1.get().equals(g2.get());
}
15-
wan Raf
16
17
ime ta
18 }
19 - public class Main {
nadi Ha
public static void main(String args[]){
Test type = new Test();
Test typel = new Test();
type.set("Quiz 6");
20
can u e
21
22
23
Morio
type1.set(6);
system.out.println(CompareTest.isEqual(type, type1));
}
24
extend
25
26
eya Ra
lease e
27 }
Can you replace isEqual() function with a generic method that uses the generic class that
YOu created in question 2
Transcribed Image Text:3. Suppose by using the Class Test we write a function isEqual() in CompareTest class to compare two objects that returns true if they are equal otherwise return false in the following way. 1- class Test { r Rahm private Object t; public Object get() { return t; } 5- 6. 7 8. public void set(Object t) { this.t = t; } 9- 10 11 12 } 13 S com 14 - class CompareTest { public static boolean isEqual(Test g1, Test g2){ return g1.get().equals(g2.get()); } 15- wan Raf 16 17 ime ta 18 } 19 - public class Main { nadi Ha public static void main(String args[]){ Test type = new Test(); Test typel = new Test(); type.set("Quiz 6"); 20 can u e 21 22 23 Morio type1.set(6); system.out.println(CompareTest.isEqual(type, type1)); } 24 extend 25 26 eya Ra lease e 27 } Can you replace isEqual() function with a generic method that uses the generic class that YOu created in question 2
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY