for(int i = 0; i < a.length(); i++){}length() 是string的成员函数,获取字符串长度
a[i]!='\0'不是NULL结尾时'\0’
C++中字符串是以'\0'结尾。string是C++标准库std里面的。具体函数使用可以查下相应的函数!