0
strVar.at(index) && strVar[index]
之間的差異?
我的項目需要我將長號碼轉換爲字符串,我想用這些
之一來分析新的字符串。另外,它會更好做
typedef string num;
或者我應該使用.c_str()命令嗎?
strVar.at(index) && strVar[index]
之間的差異?
我的項目需要我將長號碼轉換爲字符串,我想用這些
之一來分析新的字符串。另外,它會更好做
typedef string num;
或者我應該使用.c_str()命令嗎?
std::string::at(size_t index)
引發例外index
超出界限。 operator[]
沒有。