嘿,堆栈溢出者,
我已经写了;
public class testing
{
public String subString(int start, int end)
{
char[]content = new char[]{0,1,2,3,4,5,6,7,8,9};
String output ="";
for (int i = 0; i < content.length;i++)
{
if (content[i] >= start && content[i] < end)
{
output = output + content[i];
}
}
return output;
}
/**
* @param args
*/
public static void main(String[] args)
{
testing test1 = new testing();
System.out.println( test1.subString(1,2));
}
}
返回:
[]
无论我如何尝试拆分它都会以某种方式工作,它将返回正确数量的小方块。我猜是因为我试图将一个数组元素放在一个字符串中?
返回值也必须是字符串。
谁能帮我吗。
PS我知道有这个功能:)