🔞 ADULT: T//certification/Sybex Java OCP Study Guide - HD Photos!

  • 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:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Paul Clapham
Sheriffs:
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

Sybex Java OCP 8 Study Guide Typo Chapter 7 page 396

 
Ranch Hand
Posts: 216
11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Question 9
Sybex Java OCP 8 Study Guide Typo Chapter 7 page 396

in the book is
int result = t1.fork().join();
Integer sum = pool.invoke(task);

It needs explicit cast because it is an Object and it gives compiler error

int result = (int) t1.fork().join();
Integer sum = (Integer) pool.invoke(task);



 
author & internet detective
Posts: 42204
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Agreed. Logged as errata crediting you. Thanks!
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic