求教关于string的问题string a="abc";string::iterator it = a.begin();for(;it!=a.end();it++){ string b=(*it);}这里string b=(*it);报错了如何将迭代器所指向的值 赋给string b呢。。。