Java tip 03 -- A Brief Description of ifelse

Source: Internet
Author: User

In development, if {} else {} is often used. Sometimes more than N is nested, which sometimes causesCodeLooks messy. Next we will introduce a simple ifelse method:

If (is = true ){

Is = false;
} Else {

Is = true;

}

This code is simple, but sometimes it takes a lot of effort to convert it. For example:

If (num = 0 ){

Num = 1;

} Else {

Num = 0;

}

This type of code often appears in the map of the game. Num is not 0 or 1, and a large number of point changes are required. Here I will simply implement it through a simple mathematical formula.

Num = (Num + 1) % 2;

In this way, the above functions can be completed as long as this code is used, and any language can be used, because this is just an idea.

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.