Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for Como trabalhar com Loop no Dart
William Koller
William Koller

Posted on

     

Como trabalhar com Loop no Dart

Iremos iniciar uma lista

var list = [1, 2, 3, 4, 5, 6];
Enter fullscreen modeExit fullscreen mode

Utilizando o métodoforEach

list.forEach((element) {  print(element);});
Enter fullscreen modeExit fullscreen mode

Utilizandofor Loop

for (int i = 0; i < list.length; i++) {  var e = list[i];  print(e);}
Enter fullscreen modeExit fullscreen mode

Utilizandofor in Loop

for (var e in <List>[list]) {  print(e);}
Enter fullscreen modeExit fullscreen mode

Utilizandowhile Loop

var i = 0;while (i < list.length) {  print(list[i]);  i++;}
Enter fullscreen modeExit fullscreen mode

Repo:

loop-dart

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Senior Software Engineer
  • Location
    Parana, Brazil
  • Education
    Analysis and Systems Development
  • Work
    Senior Software Engineer
  • Joined

More fromWilliam Koller

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp