Ruby journey (12) iterator IN RUBY

Source: Internet
Author: User

The iterator is a feature of advanced languages and is very easy to use.

For example, array Iteration
[1, 2, 3]. Each {| n | puts N. to_s}
(1. 100). Each {| n | puts N. to_s} iterates each element

String Iteration
"ABDC". each_byte {| CHR | printf "% C \ n", CHR} iterates each byte
"A \ Nb \ NC". each_line {| S | puts s} is split and iterated using linefeeds.


Use of retry:
You can use retry to return to the beginning of the iterator during iteration, for example

Isretry = False
For L In 0 .. 4
Print L
If L =   2   And Isretry = False
Isretry = True
Puts
Retry
End
End
Puts
# Output:
# 012
# 01234

Finally, we define our own while structure statement.

Def Mywhile (TJ)
Return   If   Not TJ
Yield
Retry
End
I = 0
Mywhile (I <   3 ) {Puts I. to_s; I + =   1 }

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.