在 C 中输出 string 类型有以下方法:使用 std::cout 对象:std::cout << string_variable使用输出运算符(<<):string_variable << std::cout
C 中输出 string 类型
在 C 中,您可以使用以下方法来输出 string 类型:
std::cout 对象:
std::cout << string_variable
输出运算符(<<):
string_variable << std::cout
示例:
<code class="cpp">#include <iostream> #include <string> using namespace std; int main() { string my_string = "Hello, C++!"; // 使用 std::cout 对象输出 cout << my_string << endl; // 使用输出运算符输出 my_string << cout << endl; return 0; }</p> <p>输出:</p> <pre class="brush:php;toolbar:false"><code>Hello, C++! Hello, C++!</code>
注意:
std::cout
对象输出更常见。endl
操纵符可用于换行。以上是c++中string类型怎么输出的详细内容。更多信息请关注PHP中文网其他相关文章!