调用java.lang.String;实现java示例
时间: 2024-05-14 15:15:33 浏览: 70
下面是一个简单的 Java 示例,演示了如何使用 java.lang.String 类创建字符串并对其进行一些基本操作:
```
public class StringExample {
public static void main(String[] args) {
// 创建一个字符串变量并赋值
String str = "Hello, world!";
// 输出字符串长度
System.out.println("Length of the string is: " + str.length());
// 输出字符串中的第一个字符
System.out.println("First character of the string is: " + str.charAt(0));
// 输出字符串中的最后一个字符
System.out.println("Last character of the string is: " + str.charAt(str.length() - 1));
// 将字符串转换为大写
System.out.println("Uppercase of the string is: " + str.toUpperCase());
// 将字符串转换为小写
System.out.println("Lowercase of the string is: " + str.toLowerCase());
}
}
```
输出结果:
```
Length of the string is: 13
First character of the string is: H
Last character of the string is: !
Uppercase of the string is: HELLO, WORLD!
Lowercase of the string is: hello, world!
```
阅读全文