• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Doubt-Generics and Collections-Kathy Sierrra- SCJP6-Question5

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a doubt in Q.5 Chapter-Generics and Collections of Kathy Sierrra book for SCJP 6.

Question:


This class is to be updated to make use of appropriate generic types, with no changes in
behavior (for better or worse). Which of these steps could be performed? (Choose three.)

A. Replace line 13 with
private Map<String, int> accountTotals = new HashMap<String, int>();

B. Replace line 13 with
private Map<String, Integer> accountTotals = new HashMap<String, Integer>();

C. Replace line 13 with
private Map<String><Integer>> accountTotals = new HashMap<String><Integer>>();

D. Replace lines 17–20 with
int total = accountTotals.get(accountName);
if (total == null) total = 0;
return total;

E. Replace lines 17–20 with
Integer total = accountTotals.get(accountName);
if (total == null) total = 0;
return total;

F. Replace lines 17–20 with
return accountTotals.get(accountName);

G. Replace line 24 with
accountTotals.put(accountName, amount);

H. Replace line 24 with
accountTotals.put(accountName, amount.intValue());

Correct Answers are B,E,G

My doubt is why is choice D incorrect.
 
Ranch Hand
Posts: 141
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

D.Replace lines 17–20 with
int total = accountTotals.get(accountName);

E. Replace lines 17–20 with
Integer total = accountTotals.get(accountName);



Look accountTotals would return a Integer Object,
If you choose D a boxing-unboxing will happened.

Question said

with no changes in behavior (for better or worse).

 
For my next trick, I'll need the help of a tiny ad ...
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic