C++ | from_string函数的写法
C++标准库提供了to_string, 却没有from_string, 如何自己实现一个?
/**
* @author hellcat
* @time 2020.06.05
* @file a.cpp
* @hedername std
* @return
*/
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
struct bad_from_string : bad_cast {
const char* what() const noexcept override { // 这里的函数签名视编译器而定
return "bad cast from string";
}
};
template<typename T>
T from_string(const string& s) {
istringstream is(s);
T t;
if (!(is >> t)) throw bad_from_string();
return t;
}
int main() {
string s = "12414.322";
string ss = to_string(11231);
try {
auto a = from_string<double>(s);
cout << a << endl;
} catch (exception& e) {
cout << e.what() << endl;
}
}
这里应用了异常处理机制, 避免auto a = from_string