Ruby unless usage

Source: Internet
Author: User

The ruby unless expression runs only when the condition is false.CodeBut it does not understand the logic combination with the condition "& |". Whether it is false or false to run the unless code block, or false | false to continue running.

In fact, this problem is very simple, but I never thought about it. unless only indicates whether the condition is false or true. If the & or | caozuofu.html "target =" _ blank "> operator is used, it does not matter.
& Logical operators, or the following conditions are run only when the preceding conditions are true

Puts 'OK' unless 1 & nil # If the entire condition expression returns nil, The unless condition is true and okputs 'OK' unless 1 is printed. | nil # If the entire condition expression returns 1, not true, no output puts 'OK' unless nil | false # The entire conditional expression returns false, true, print OK
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.