91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java charat的實際案例

小樊
82
2024-11-19 07:00:34
欄目: 編程語言

charAt() 是 Java 中的一個字符串方法,用于返回指定索引處的字符。下面是一個實際案例,展示了如何使用 charAt() 方法:

public class CharAtExample {
    public static void main(String[] args) {
        String str = "Hello, World!";
        
        // 使用 charAt() 獲取索引為 0 的字符
        char firstChar = str.charAt(0);
        System.out.println("第一個字符是: " + firstChar); // 輸出: H
        
        // 使用 charAt() 獲取索引為 7 的字符
        char eighthChar = str.charAt(7);
        System.out.println("第八個字符是: " + eighthChar); // 輸出: W
        
        // 使用 charAt() 獲取索引為 -1 的字符(會拋出 StringIndexOutOfBoundsException)
        try {
            char lastChar = str.charAt(-1);
            System.out.println("最后一個字符是: " + lastChar);
        } catch (StringIndexOutOfBoundsException e) {
            System.out.println("字符串索引越界");
        }
    }
}

在這個例子中,我們創建了一個名為 str 的字符串變量,包含文本 “Hello, World!”。然后,我們使用 charAt() 方法分別獲取索引為 0、7 和 -1 的字符,并將它們打印出來。注意,當我們嘗試獲取索引為 -1 的字符時,程序會拋出一個 StringIndexOutOfBoundsException 異常,因為字符串的索引是從 0 開始的,所以最后一個字符的索引是 13,而不是 -1。

0
田阳县| 海安县| 揭西县| 临桂县| 镇坪县| 磴口县| 清徐县| 舟曲县| 芦山县| 龙泉市| 沙田区| 安多县| 吉水县| 搜索| 石门县| 集安市| 绥江县| 兴化市| 错那县| 方山县| 汉川市| 曲水县| 布尔津县| 绍兴县| 韶山市| 民县| 济阳县| 工布江达县| 河南省| 顺昌县| 明光市| 北宁市| 科尔| 重庆市| 彰化市| 榆林市| 高要市| 建瓯市| 三都| 汶上县| 鹤庆县|