boost::lexical_cast 从字符串到字符异常

发布于 2024-12-13 02:40:57 字数 339 浏览 0 评论 0原文

我对使用 boost::lexical_cast 很陌生,对其内部结构了解甚少。我正在尝试执行以下转换:

string someString = boost::lexical_cast<char>(sourceString);

但是,boost 抱怨上面的代码是:

[Exception]: bad lexicalcast: source type value Could not beterpreted as target

The source 是一个字符串,但它始终只是 1字符长。

有人可以解释一下吗?

谢谢。

I am new to using boost::lexical_cast and have minimal understanding of its internals. I am trying to do the following cast:

string someString = boost::lexical_cast<char>(sourceString);

However, boost is complaining that the above code is:

[Exception]: bad lexical cast: source type value could not be interpreted as target

The source is a string, however it will always only be 1 character long.

Could someone please explain?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

远昼 2024-12-20 02:40:58

当我测试它时(修复从 charstring 的无效转换后),只要 sourceString 包含单个字符,词法转换就会成功。 这里是测试结果。

如果您的真实代码不起作用,请发布更多代码;最好是一个可运行的程序来演示错误。

When I test it (after fixing the invalid conversion from char to string), the lexical cast succeeds as long as sourceString contains a single character. Here are the test results.

If your real code doesn't work, then please post more of it; preferably a runnable program that demonstrates the error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文