Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 3 . Often methods are written generically so that you can pass arbitrary types of objects back and forth. Consider the following method call.

13. Often methods are written generically so that you can pass arbitrary types of objects back and forth.
Consider the following method call. It requires one cast in order to work. Where should the cast be
placed in the code?
String str1="hello";
String str2=processObject(str1);
...
public Object processObject(Object obj1)
{
Object obj2;
...
return obj2;
}
14. Starting with Java 1.5 a programmer can specify the type of the internal array that the system will
use in, say, an ArrayList. Show how to create an ArrayList that has elements of type "Customer".
Assume that you have previously created the Customer class. In particular show how to 1) create a
reference variable for the ArrayList, 2) create the ArrayList object, 3) add a Customer object to the
ArrayList, and 4) retrieve that Customer object from the ArrayList.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Genetic Databases

Authors: Martin J. Bishop

1st Edition

0121016250, 978-0121016258

More Books

Students also viewed these Databases questions

Question

8. Describe the steps in the development planning process.

Answered: 1 week ago