Package java.io
Class CharArrayReader

Public Method skip

int skip(int num_chars)

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method skips the specified number of characters.

Example

   char[] ch = {'H','e','l','l','o'};
   CharArrayReader car = new CharArrayReader(ch);
   Logger.log("The first element of the stream: " + car.read());
   car.skip(2);
   Logger.log("The next element the fourth: " + car.read());

The skip method skips the specified characters.