字符串

  • 字符串也就相当于一种字符数组,它在java中有许多的库函数比如:
  1. charAt(int index): Returns the character at the specified index in the string.

    1
    2
    String str = "Hello";
    char character = str.charAt(0); // Returns 'H'
Read more