ostream
是C++標準庫中的一個輸出流類,用于向輸出設備輸出數據。它是ostream
類的派生類,包含了各種輸出數據的成員函數。
通過ostream
類,可以使用<<
運算符將數據輸出到輸出流中。例如:
#include <iostream>
int main() {
int num = 42;
double pi = 3.14159;
std::cout << "The number is: " << num << std::endl;
std::cout << "The value of pi is: " << pi << std::endl;
return 0;
}
在上面的例子中,std::cout
是ostream
對象,<<
運算符用于將字符串、整數、浮點數等數據輸出到標準輸出設備(通常是控制臺)。