Java StringCharacterIterator setIndex()方法及示例

Java StringCharacterIterator setIndex()方法及示例

Java中 java.text .StringCharacterIterator类setIndex() 方法是用来设置这个StringCharacterIterator要读取的当前索引。该方法以要设置的索引为参数,在该索引处设置这个StringCharacterIterator的索引,然后返回该字符。

语法。

public char setIndex(int index)

参数。这个方法把要设置的 索引 作为一个参数,并设置这个StringCharacterIterator的索引。

返回值。该方法返回该方法设置的索引处的字符。

异常情况。如果指定的索引不在有效范围内(getBeginIndex(), getEndIndex() – 1),该方法会抛出IllegalArgumentException。

程序。

// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class StringCharacterIteratorDemo {
    public static void main(String[] args)
    {
  
        StringCharacterIterator
            stringCharacterIterator
            = new StringCharacterIterator(
                "GeeksForGeeks");
  
        System.out.println("Current Index: "
                           + stringCharacterIterator
                                 .getIndex());
  
        int index = 5;
  
        System.out.println("Updated the index to: "
                           + index);
  
        System.out.println("Character at new current index: "
                           + stringCharacterIterator
                                 .setIndex(index));
    }
}

输出:

Current Index: 0
Updated the index to: 5
Character at new current index: F

参考资料: https://docs.oracle.com/javase/9/docs/api/java/text/StringCharacterIterator.html#setIndex-int-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程