输出字符串的困境
在 C 领域,尝试使用“cout”显示字符串有时会导致令人困惑的错误。考虑这个令人费解的场景:
<code class="cpp">string text; text = WordList[i].substr(0,20); cout << "String is : " << text << endl;
遇到这个神秘消息的程序员有祸了:
error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion)
即使是最简单的字符串输出,例如:
<code class="cpp">string text; text = "hello"; cout << "String is : " << text << endl;
似乎遇到阻力。
增强你的编译能力
为了克服这个困境,必须召唤两个忠实的同伴:
<code class="cpp">#include <string> #include <iostream></code>
通过调用这些标头,您可以赋予代码轻松驾驭复杂水域的能力。有这些战友在身边,你可以再次享受“cout”的乐趣,告别那些令人恼火的错误。
以上是为什么我不能在 C 中'cout”我的字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!