java.lang.String.charAt()方法範例


java.lang.String.charAt() 方法返回指定索引處的char值。範圍從0索引到length()- 1序列,第一個char值在索引0,下一個是索引1,依此類推,對於陣列索引。

宣告

以下是java.lang.String.charAt()方法的宣告

public char charAt(int index)

引數

  • index -- 這是char值的索引。

返回值

此方法返回這個字串的指定索引處的char值。第一個char值在索引0。

異常

  • IndexOutOfBoundsException -- 如果索引引數比該串的長度小或為負。

例子

下面的例子顯示java.lang.String.charAt()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str = "This is yiibai";
                   
    // prints character at 1st location
    System.out.println(str.charAt(0));
          
    // prints character at 5th location i.e white-space character
    System.out.println(str.charAt(4));
          
    // prints character at 18th location 
    System.out.println(str.charAt(17));
  }
} 

讓我們編譯並執行上述程式,這將產生以下結果。它也將列印空白字元。

T

p