下⾯C++代码执⾏后不能输出"GESP"的是( )。
string str("GESP"); cout<<str<<endl;
string str="GESP"; cout<<str<<endl;
string str("GESP"); cout<<str[1]<<str[2]<<str[3]<<str[4]<<endl;
string str{"GESP"}; cout<<str<<endl;