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

Wrapper classes

 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Wrapper classses are not mentioned in the scjp objectives.Will they come in the exam?
And also tell me what is this JLS and where can I find it
 
Ranch Hand
Posts: 153
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gautam Sewani:
And also tell me what is this JLS and where can I find it


http://java.sun.com/docs/books/jls/second_edition/html/j.title.doc.html
 
Sheriff
Posts: 7023
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JLS - The Java Language Specification
Offhand, I don't recall if knowledge of the wrapper classes are required - but it can be very useful to know how to use them.
While Sun's Java Tutorial doesn't seem to cover this topic with much detail or examples, it does at least cover it in part of The Numbers Trail.
The main point to realize (in my opinion) is the wrapper classes provide the programmer with an easy way to treat a primitive data type value as a regular old object. These classes also provide a few useful static methods.
Good Luck.
[ April 20, 2002: Message edited by: Dirk Schreckmann ]
 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Questions involving wrapper classes did appear on my exam about 10 days ago. Key points to remember are that wrapper objects are immutable and their toString() method allows concatenation with other strings. For example,
Integer someNum = new Integer(15);
System.out.println("Number is " + someNum);
will display "Number is 15".
They are also handy for string <-> primitive conversion, displaying the hexadecimal string for an integer, etc..
 
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Question related wrapper class do come.....
 
You don't like waffles? Well, do you like this tiny ad?
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic