如何在std::string和Aws::string之间进行转换?

How to convert between a std::string and an Aws::String?(如何在std::string和Aws::string之间进行转换?)
本文介绍了如何在std::string和Aws::string之间进行转换?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用以下代码将std::string转换为Aws::String时:

std::string s("Johnny is cool");
Aws::String aws_s(s);

我收到以下错误:

error: no matching function for call to ‘std::__cxx11::basic_string<char, std::char_traits<char>, Aws::Allocator<char> >::basic_string(const string&)’

推荐答案

来自https://github.com/aws/aws-sdk-cpp/issues/416。谢谢Bu11etmagnet!


如果您有一个要传递给Aws函数的std::string,请从它构造一个Aws::String

std::string s{"whatever"};
Aws::String aws_s(s.c_str(), s.size());
Aws::SomeFunction(aws_s);

如果从Aws函数获得Aws::String,请从它构造std::String:

Aws::String const& aws_s = Aws::SomeFunction();
std::string s(aws_s.c_str(), aws_s.size());

遗憾的是,这两个命令都执行字符串内容的副本。

Aws::String aws_s(std_string.c_str())将使用strlen()测量字符串长度,该信息已包含在std::String对象中。

这篇关于如何在std::string和Aws::string之间进行转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Qt Calling External Python Script(Qt调用外部Python脚本)
QTableView/QTableWidget grid stylesheet - grid line width(QTableView/QTableWidget网格样式表-网格线宽)
QML opens GUI window and console(QML打开图形用户界面窗口和控制台)
How to nicely quot;castquot; qint64 to int for QProgressBar(如何为QProgressBar巧妙地将qint64转换为int)
Is it possible to use an underlined letter as keyboard shortcut in Qt?(Qt中可以使用带下划线的字母作为键盘快捷键吗?)
How to disable selection highlighting in a QTableWidget(如何在QTableWidget中禁用选定内容突出显示)