首页 > 代码库 > JAVA中怎样输入字符串

JAVA中怎样输入字符串

https://zhidao.baidu.com/question/344967589.html

java.lang.String.charAt() 方法返回指定索引处的char值。http://www.yiibai.com/javalang/string_charat.html

(toLowerCase)toUpperCase的意思是将所有的英文字符转换为大写字母,如:

String  cc = “aBc123”.toUpperCase();结果就是:ABC123。

JAVA中怎样输入字符串