SORU
22 EKİM 2010, Cuma


Bir sonu söyle .ruby'de her döngü

Eğer bir döngü gibi . varsa

users.each do |u|
  #some code
end

Çok kullanıcılı çok karma. Kolay koşullu mantığı, son kullanıcı olup olmadığını görmek için kullanıcılar ne karma ve tek gibi bir şey yani bu son kullanıcı için belirli bir kod çalıştırmak istiyorum

users.each do |u|
  #code for everyone
  #conditional code for last user
    #code for the last user
  end
end

Teşekkürler

CEVAP
22 EKİM 2010, Cuma


users.each_with_index do |u, index|
  # some code
  if index == users.size - 1
    # code for the last user
  end
end

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • bcbauer

    bcbauer

    7 ŞUBAT 2007
  • ItZWaffleS420

    ItZWaffleS42

    9 EYLÜL 2011
  • Joshua Bane

    Joshua Bane

    24 Temmuz 2007

İLGİLİ SORU / CEVAPLAR