如何在 C++ 中打印字符串
本文将演示有关如何在 C++ 中打印字符串的多种方法。
使用 std::cout
和 <<
操作符打印字符串
std::cout
是控制输出到流缓冲区的全局对象。为了将 s1
字符串变量输出到缓冲区,我们需要使用运算符-<<
称为流插入运算符。下面的例子演示了单字符串输出操作。
#include <iostream>
#include <string>
#include <iterator>
using std::cout; using std::cin;
using std::endl; using std::string;
int main(){
string s1 = "This string will be printed";
cout << s1;
cout << endl;
return EXIT_SUCCESS;
}
输出:
This string will be printed
使用 std::copy
算法打印字符串
copy
方法来自 <algorithm>
STL 库,它可以用多种方式操作范围元素。由于我们可以把 string
容器本身作为一个范围来访问,所以我们可以通过在 copy
算法中加入 std::ostream_iterator<char>
参数来输出每个元素。
注意,这个方法也可以在字符串的每个字符之间传递一个特定的定界符。在下面的代码中,没有指定定界符(""
)以原始形式打印字符串。
#include <iostream>
#include <string>
#include <vector>
#include <iterator>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::copy;
int main(){
string s1 = "This string will be printed";
copy(s1.begin(), s1.end(),
std::ostream_iterator<char>(cout, ""));
cout << endl;
return EXIT_SUCCESS;
}
使用 printf()
函数打印字符串
printf
是用于格式化输出的强大工具。它是 C 标准输入输出库的一部分。它可以直接从 C++ 代码中调用。printf
的参数数量是可变的,它将字符串变量作为 char *
类型,这意味着我们必须从 s1
变量中调用 c_str
方法来传递它作为参数。请注意,每个类型都有自己的格式指定符(例如,string
-%s
),它们列在下面的表格中。
指定符 | 说明 |
---|---|
% |
打印 % 字符(这种类型不接受任何标志、宽度、精度、长度字段) |
d, i |
int 作为一个有符号的整数。%d 和 %i 是输出的同义词,但当与 scanf 一起使用时,输入就不同了(使用%i 会将数字解释为十六进制,如果前面是 0x,则解释为八进制。) |
u |
打印十进制无符号 int |
f, F |
f 和 F 只是在无限数或 NaN 的字符串打印方式上有所不同(f 为 inf、infinity 和 nan;F 为 INF、INFINITY 和 NAN) |
e,E |
标准形式的 double (d.dde±dd )。E 转换使用字母 E(而不是 e)来引入指数。 |
g, G |
在正常或指数表示法中使用 double ,以其大小更合适。g 使用小写字母,G 使用大写字母。 |
x, X |
x 使用小写字母,X 使用大写字母。 |
o |
八进制的无符号整型 |
s |
以空为结束的字符串 |
c |
char(字符) |
p |
void* (指向 void 的指针),采用执行定义的格式。 |
a, A |
以十六进制表示法的 double 值,从 0x 或 0X 开始。a 使用小写字母,A 使用大写字母。 |
n |
不打印任何内容,但将目前成功写入的字符数写入一个整数指针参数中。 |
#include <iostream>
#include <string>
#include <iterator>
using std::cout; using std::cin;
using std::endl; using std::string;
int main(){
string s1 = "This string will be printed";
cout << s1;
cout << endl;
printf("%s", s1.c_str());
cout << endl;
return EXIT_SUCCESS;
}
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn