Basic HTML version of Foils prepared 17 Nov 97

Foil 18 java.lang.Object Wrappers

From Java Tutorial, July 1, 1996 CEWES Tutorial, CPS606, JSU Class CSC499 -- July 22-25 1997, Fall 97. by Nancy J. McCracken,Geoffrey C. Fox, Tom Scavo


Primitive types such as int, char, float, etc. are NOT classes. Thus one cannot use methods such as
int var;
var.toString();
ALL primitive types have associated wrappers:
Character myChar = new Character( 'A' );
The Character class has methods such as:
if ( myChar.equals( ch ) ) ...
System.out.print( myChar.toString() );
There are also many static (class) methods:
ch = Character.toLowerCase( myChar );
if ( Character.isUpperCase( myChar ) ) ...
The methods in a wrapper class are also useful to convert types, such as a String to a Double.



© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Wed Apr 1 1998