作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
与我使用 VS2010 的主题完全一样:
我有:
std::string s = std::to_string(42);
错误
Error 4 error C2668: 'std::to_string' : ambiguous call to overloaded function
如何修复?
最佳答案
Visual C++ 2010 只有三个用于 std::to_string
的重载,它们采用 long long
、unsigned long long
和 long双
。该标准定义的不止于此,但 VC++ 2010 不支持它们。首选不从 int
文字 42
进行转换,因此调用不明确。相反,您可以使用不同类型的整数文字。例如:
std::string s = std::to_string(42LL);
关于c++ - to_string(42) 不止一个实例匹配参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16289572/
我是一名优秀的程序员,十分优秀!