c++ - 格式化 C++ 控制台输出

我一直在尝试将输出格式化到控制台的最长时间,但实际上并没有发生任何事情。我一直在尝试尽可能多地使用 iomanipofstream& out 函数。

void list::displayByName(ostream& out) const
{
    node *current_node  = headByName;

    // I have these outside the loop so I don't write it every time.

    out << "Name\t\t" << "\tLocation" << "\tRating " << "Acre" << endl;
    out << "----\t\t" << "\t--------" << "\t------ " << "----" << endl;

    while (current_node)
    {
        out << current_node->item.getName() // Equivalent tabs don't work?
            << current_node->item.getLocation()
            << current_node->item.getAcres()
            << current_node->item.getRating()
            << endl;

        current_node = current_node->nextByName;
    }

    // The equivalent tabs do not work because I am writing names,
    // each of different length to the console. That explains why they
    // are not all evenly spaced apart.
}

我可以使用它们来使它们彼此正确对齐吗? 我调用的函数是不言自明的,并且长度不同,因此彼此之间不能很好地对齐。

我已经尝试了 iomanip 中的所有内容。

最佳答案

把它想象成使用 Microsoft Excel :) 您将流视为字段。因此,您首先设置字段的宽度,然后在该字段中插入文本。例如:

#include <iostream>
#include <iomanip>
#include <string>

int main()
{
    using namespace std;

    string firstName = "firstName",
            secondName = "SecondName",
            n = "Just stupid Text";
    size_t fieldWidth = n.size(); // length of longest text

    cout << setw(fieldWidth) << left << firstName << endl // left padding
         << setw(fieldWidth) << left << secondName << endl
         << setw(fieldWidth) << left << n << endl;

    cout << setw(fieldWidth) << right << firstName << endl // right padding
         << setw(fieldWidth) << right << secondName << endl
         << setw(fieldWidth) << right << n << endl;
}

......

......

字段宽度仅表示文本+空格的宽度。您可以填充空格以外的任何内容:

string name = "My first name";
cout << setfill('_') << setw(name.size() + 10) << left << name;

.....

output::
My first name__________

......

我认为最好的方法是弄清楚你的格式,然后编写一个新的格式化程序来满足你的所有需求:

#include <iostream>
#include <iomanip>
#include <string>

std::ostream& field(std::ostream& o)
{
    // usually the console is 80-character wide.
    // divide the line into four fields.
    return o << std::setw(20) << std::right;
}

int main()
{
    using namespace std;

    string firstName = "firstName",
            secondName = "SecondName",
            n = "Just stupid Text";
    size_t fieldWidth = n.size();

    cout << field << firstName << endl
         << field << secondName << endl
         << field << n << endl;
}

如果你开始考虑参数化操纵器,只有接受一个 intlong 参数的很容易实现,如果你不熟悉流,其他类型真的很模糊在 C++ 中。

https://stackoverflow.com/questions/1449818/

相关文章:

haskell - 如何将 Rational 转换为 "pretty"字符串?

c# - 从时间中删除前导零以显示耗时

c++ - Qt - QPushButton 文本格式

java - 更改java控制台输出的颜色

reporting-services - SSRS 格式显示为百分比

swift - 在 Swift 中使用 %@ 格式化字符串

sql-server - SQL 2008 使用 LTrim(RTrim 并且数据中仍有空格

html - 在电子邮件正文中应用 HTML 格式

c# - 在 DataGridView 列中格式化 TimeSpan

time - ColdFusion - 从分钟数创建时间