почему «» в 0-м индексе массива при выполнении разделения () без разделителей?

public static void main(String[] args) {
    // TODO Auto-generated method stub

    String str="aaabbddaabbcc";
    String[] str2=str.split("");
    String pointer=str2[0];
    int count=0;
    String finalStr="";
    for(String str132:str2)
    {
        if(str132.equalsIgnoreCase(pointer))
        {
            ++count;
        }
        else
        {

            finalStr+=str132+count;
            count=0;
            pointer=str132;
            ++count;
        }
    }
    System.out.println(finalStr);
}

При выполненииstr.split("")почему я получаю"" в 0-м индексеstr2 массив?

Ответы на вопрос(1)

Ваш ответ на вопрос