想象一下屏幕上有很多声明和信息要写出来
cout << "statement A :" << a << "\t statement B :" << B
<< "\t statement C :" << C << "\t statement D :" << D;
在 C# 中你会写:
Console.WriteLine(
"statement A :{0}\t statement B :{1}\t statement C :{2}\t statement D :{3}",
a, b, c, d);
就像printf
在 C# 中一样,但我不想在我的程序中使用 C 语句;有没有办法<<
在不使用 C++ 的情况下编写更少的代码printf
?