2014-03-06 47 views
0

是什麼strVar.at(指數)對strVar [指數]

strVar.at(index) && strVar[index] 

之間的差異?

我的項目需要我將長號碼轉換爲字符串,我想用這些
之一來分析新的字符串。另外,它會更好做

typedef string num; 

或者我應該使用.c_str()命令嗎?

回答

1

std::string::at(size_t index)引發例外index超出界限。 operator[]沒有。