package com.itcast.String;
我按照毕老师做的myTrim()方法 将两端的空格给去掉,为什么实现不了,老是出错啊?
public class StringDemo01
{
public static void sop(String str)
{
System.out.println(str);
}
public static void main(String[] args)
{
String s = " ab cd ";
sop(s);
s = myTrim(s);
sop(s);
}
public static String myTrim(String str)
{
int start = 0,end = str.length()-1;
while(start<=end && str.charAt(start)== " ") **** 错误提示消息: Incompatible operand types char and String
start++;
while(start<=end && str.charAt(end) == " ") **** 同上
end--;
//返回有效字符串:
return str.substring(start,end+1);
}
}
求助。。 |
|