Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

java::lang::String Class Reference

The String class represents character strings. More...

#include <java_lang_String.h>

Inheritance diagram for java::lang::String:

Inheritance graph
[legend]
Collaboration diagram for java::lang::String:

Collaboration graph
[legend]
List of all members.

Public Types

enum  {
  xmogDefaultFlags = xmog_base::GLOBAL, xmogMajorVersion = 3, xmogMinorVersion = 2, xmogPatchVersion = 9,
  xmogBuildNumber = 2047
}
typedef ::xmog_java_array_template<
::java::lang::String
array1D
typedef ::xmog_java_array_template<
::xmog_java_array_template<
::java::lang::String > > 
array2D

Detailed Description

The String class represents character strings.

All string literals in Java programs, such as "abc", are implemented as instances of this class.

Strings are constant; their values cannot be changed after they are created. String buffers support mutable strings. Because String objects are immutable they can be shared. For example:

<blockquote>

                 String str = "abc";

</blockquote>

is equivalent to:

<blockquote>

                 char data[] = {'a', 'b', 'c'};
                 String str = new String(data);

</blockquote>

Here are some more examples of how strings can be used:

<blockquote>

                 System.out.println("abc");
                 String cde = "cde";
                 System.out.println("abc" + cde);
                 String c = "abc".substring(2,3);
                 String d = cde.substring(1, 2);

</blockquote>

The class String includes methods for examining individual characters of the sequence, for comparing strings, for searching strings, for extracting substrings, and for creating a copy of a string with all characters translated to uppercase or to lowercase. Case mapping relies heavily on the information provided by the Unicode Consortium's Unicode 3.0 specification. The specification's UnicodeData.txt and SpecialCasing.txt files are used extensively to provide case mapping.

The Java language provides special support for the string concatenation operator ( + ), and for conversion of other objects to strings. String concatenation is implemented through the StringBuffer class and its append method. String conversions are implemented through the method toString, defined by Object and inherited by all classes in Java. For additional information on string concatenation and conversion, see Gosling, Joy, and Steele, The Java Language Specification.

Unless otherwise noted, passing a null argument to a constructor or method in this class will cause a to be thrown.

Author:
Lee Boynton

Arthur van Hoff


The documentation for this class was generated from the following file:
Generated on Fri Jun 16 10:19:33 2006 for JMS Courier for C++ by  doxygen 1.4.1