• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Errata for OCP: Oracle Certified Professional Java SE 8 Programmer II Study Guide - Page 174 - 180

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
page 174 :

@FunctionalInterface public class Supplier<T> {
should read:
@FunctionalInterface public interface Supplier<T> {

page 175:
@FunctionalInterface public class Consumer<T> {
should read:
@FunctionalInterface public interface Consumer<T> {

@FunctionalInterface public class BiConsumer<T,U> {
should read:
@FunctionalInterface public interface BiConsumer<T,U> {

page 177:
@FunctionalInterface public class Predicat<T> {
should read:
@FunctionalInterface public interface Predicat<T> {

@FunctionalInterface public class BiPredicat<T,U> {
should read:
@FunctionalInterface public interface BiPredicat<T,U> {

page 178:
@FunctionalInterface public class Function<T,R> {
should read:
@FunctionalInterface public interface Function<T,R> {

page 179:
@FunctionalInterface public class BiFunction<T,U,R> {
should read:
@FunctionalInterface public interface BiFunction<T,U,R> {

page 180:
@FunctionalInterface public class UnaryOperator<T> {
should read:
@FunctionalInterface public interface UnaryOperator<T> {

@FunctionalInterface public class BinaryOperator<T> {
should read:
@FunctionalInterface public interface BinaryOperator<T> {

 
Bartender
Posts: 1251
87
Hibernate jQuery Spring MySQL Database Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to CodeRanch! and thank you for reporting   but It is known errata.
You can check list of erratas OCP 8 click here --->OCP 8 Known Errata List
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic