String[] getback()
{
String str[]=new String[5] ;
for(int i=0;i<=4;i++)
{
str[i]="i";
}
}
请问在GETBACK函数会返回什么类型的值?String[]是表示字符串数组吗?