创建一个变量名为strBuffer,内容为Hello的StringBuffer对象,然后使用append()方法在字符串末尾增加内容World。接着将strBuffer对象转换为String类型,然后分别将字符串的内容全部转换为大写(toUpperCase())和小写(toLowerCase())并打印到控制台。
时间: 2024-01-21 18:18:13 浏览: 15
将字符串"Hello World"转换成大写形式
5星 · 资源好评率100%
下面是Java代码实现:
```
StringBuffer strBuffer = new StringBuffer("Hello");
strBuffer.append("World");
String str = strBuffer.toString();
System.out.println(str.toUpperCase());
System.out.println(str.toLowerCase());
```
输出结果为:
```
HELLOWORLD
helloworld
```
阅读全文