在 C 中从单个字符创建字符串
在 C 中,可以从单个字符创建字符串。以下是实现此目的的几种方法:
<code class="cpp">char c = 34; std::string s(1, c); std::cout << s << std::endl; // Outputs: "</code>
<code class="cpp">char c = 34; std::string s{c}; std::cout << s << std::endl; // Outputs: "</code>
<code class="cpp">char c = 34; std::string s; s.push_back(c); std::cout << s << std::endl; // Outputs: "</code>
以上是如何在 C 中从单个字符创建字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!