多次打印同一个字符而不循环

Posted

技术标签:

【中文标题】多次打印同一个字符而不循环【英文标题】:Printing the same character several times without a loop 【发布时间】:2014-03-06 19:50:26 【问题描述】:

我想“美化”我的一个 Dart 脚本的输出,如下所示:

-----------------------------------------
OpenPGP signing notes from key `CD42FF00`
-----------------------------------------

<Paragraph>

我想知道是否有一种特别简单和/或优化的方式在 Dart 中打印相同的字符 x。在 Python 中,print "-" * x 将打印 "-" 字符 x 次。

向this answer学习,为了这个问题,我编写了以下最小代码,它利用了核心Iterable类:

main() 
  // Obtained with '-'.codeUnitAt(0)
  const int FILLER_CHAR = 45;

  String headerTxt;
  Iterable headerBox;

  headerTxt = 'OpenPGP signing notes from key `CD42FF00`';
  headerBox = new Iterable.generate(headerTxt.length, (e) => FILLER_CHAR);

  print(new String.fromCharCodes(headerBox));
  print(headerTxt);
  print(new String.fromCharCodes(headerBox));
  // ...

这给出了预期的输出,但是 有没有更好的方法在 Dart 中打印一个字符(或字符串)x 次?在我的示例中,我想打印 "-" 字符 headerTxt.length 次。

【问题讨论】:

【参考方案1】:

最初的答案是 2014 年的,所以 Dart 语言肯定有一些更新:一个简单的字符串乘以 int 就可以了

main() 
  String title = 'Dart: Strings can be "multiplied"';
  String line = '-' * title.length
  print(line);
  print(title);
  print(line);

这将被打印为:

---------------------------------
Dart: Strings can be "multiplied"
---------------------------------

见 Dart String's multiply * operator docs:

通过将该字符串与其自身多次连接来创建一个新字符串。

str * n 的结果等价于str + str + ...(n times)... + str

如果times 为零或负数,则返回一个空字符串。

【讨论】:

【参考方案2】:

我用这种方式。

void main() 
  print(new List.filled(40, "-").join());

所以,你的情况。

main() 
  const String FILLER = "-";

  String headerTxt;
  String headerBox;

  headerTxt = 'OpenPGP signing notes from key `CD42FF00`';
  headerBox = new List.filled(headerTxt.length, FILLER).join();

  print(headerBox);
  print(headerTxt);
  print(headerBox);
  // ...

输出:

-----------------------------------------
OpenPGP signing notes from key `CD42FF00`
-----------------------------------------

【讨论】:

哇,绝对更具可读性和优雅!我不相信一定有更优化的方式来使用普通的Lists,就像你做的那样。 那是6年前的事了,6年前就给出了答案。你还想要什么评论?这些年是否需要回到过去,重新审视当时发生的一切,重新思考当时的一切,并得出一个结论,这是错误的答案?

以上是关于多次打印同一个字符而不循环的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Console.WriteLine() 多次打印相同的字符 [重复]

将指数值打印为字符串而不扩展

是否可以在不使用 python 移动终端行的情况下在同一位置打印“for循环”表?

是否可以只打印 C 字符串的某个部分,而不制作单独的子字符串?

如何在 Jquery 中多次调用一个函数来添加一个事件监听器而不只是监听最后一个?

创建一个仅包含字符串的 ArrayList。使用增强的 for 循环打印 [关闭]