當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.String.charAt()用法及代碼示例



描述

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

聲明

以下是聲明java.lang.String.charAt()方法

public char charAt(int index)

參數

index─ 這是 char 值的索引。

返回值

此方法返回此字符串的指定索引處的字符值。第一個字符值位於索引 0 處。

異常

IndexOutOfBoundsException- 如果索引參數為負數或不小於該字符串的長度。

示例

下麵的例子展示了 java.lang.String.charAt() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str = "This is tutorialspoint";

      // 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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.String.charAt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。