当前位置: 技术问答>java相关
string问题一个???????????????????????????
来源: 互联网 发布时间:2015-03-11
本文导语: class xx { public static void main(String[] args) { String s="hello"; s.concat("mrs"); s.toUpperCase(); s+=" there"; System.out.println(s); } } toUpperCase() Converts all of the characters in this String to upper case using the ru...
class xx
{
public static void main(String[] args)
{
String s="hello";
s.concat("mrs");
s.toUpperCase();
s+=" there";
System.out.println(s);
}
}
toUpperCase()
Converts all of the characters in this String to upper case using the rules of the default locale.
s.toUpperCase(),在这里起什么作用?我看了一下api,没看明白,请高手帮忙!!!
{
public static void main(String[] args)
{
String s="hello";
s.concat("mrs");
s.toUpperCase();
s+=" there";
System.out.println(s);
}
}
toUpperCase()
Converts all of the characters in this String to upper case using the rules of the default locale.
s.toUpperCase(),在这里起什么作用?我看了一下api,没看明白,请高手帮忙!!!
|
string s
不能修改串。
好象用bufferstring吧
不能修改串。
好象用bufferstring吧
|
toUpperCase()就是将字符都转为大写啊!注释说得很清楚阿。注意String的方法大都是生成一个新窜!所以,一般要对源窜操作时时这么写的
s=s.concat("mrs");
s=s.toUpperCase();
s+=" there";
s=s.concat("mrs");
s=s.toUpperCase();
s+=" there";
|
s.toUpperCase()没有什么具体的作用
但是
String str = s.toUpperCase();
可以看到str为HELLOMRS,而s为hellomrs
但是
String str = s.toUpperCase();
可以看到str为HELLOMRS,而s为hellomrs
|
就是将字符串转化为大写