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

Method with name long. Sybex OCA Java 8 Study Guide

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In book "OCA Oracle Certified Associate Java SE 8 Programmer I Study Guide" there is an error on page 170 in the next code


The method cannot have name 'long' because it is a reserved word in Java (unless one of the letters is not from english alphabet, but it this case it should be mentioned in the description for this code).
 
Ranch Hand
Posts: 221
27
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Artem Petrov wrote:In book "OCA Oracle Certified Associate Java SE 8 Programmer I Study Guide" there is an error on page 170 in the next code


The method cannot have name 'long' because it is a reserved word in Java (unless one of the letters is not from english alphabet, but it this case it should be mentioned in the description for this code).



This typo have already logged in errata page
 
Sheriff
Posts: 11606
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Artem Petrov,

First of all, a warm welcome to CodeRanch!

Artem Petrov wrote:The method cannot have name 'long' because it is a reserved word in Java (unless one of the letters is not from english alphabet, but it this case it should be mentioned in the description for this code).


You are absolutely spot-on! You can't use Java keywords as identifiers (for methods, variables, classes,...). Don't forget: Java is case-sensitive, so long and lOng are two different names. The first one is not allowed as identifier, the second compiles without any problem.So the above code snippet should beOr intMethod and longMethod would be fine as well.

As Mushfiq already mentioned, this errata item was already added to the official list (which you can find here).

Hope it helps!
Kind regards,
Roel
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic