Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些代码,例如:
for (var i = 0; i < 5; i++) { // do something }
这只是我不想写的很多样板。Ruby中是否有类似的时间:
5.times do |i| // something end
在 Dart 中可能看起来像:
5.times(doSomething);
或者
5.times((i) => doSomething);
?
不,Dart 没有(还没有?)有类似的结构。我们讨论过for (var i in 1.to(5)) doSomething;,但到目前为止还没有添加。
for (var i in 1.to(5)) doSomething;