The source code is for testing only and should not be used commercially. The source code comes from the Internet. If there is any infringement, please contact me to remove it.
Java 开发技巧:减少魔法值的使用

1. preface

A similar writing approach is encountered when refactoring old code:

    public void attend(String value) {
        if ("0".equals(value)) {
            //todo 
        } else if ("1".equals(value)) {
            //todo
        } else {
            //todo 
        }
    }

My skull hurts! from Java The grammar is impeccable, but it is incomprehensible from a business perspective 0 and 1 They are collectively calledmana 。We often need to infer the above code through context. If it is a very complex business or code from 10 years ago, it will be even worse, and there may be no documentation. So we should try to avoid magic points. Today, I will talk about a few operations to avoid magic points.

2. Avoid some operations with magic points.

Generally, magic points do not change frequently. The processing of magic values should be combined with business and scope.

2.1 static constants

If the scope of the value is in a class or under the same package, static constants can generally be used to resolve it.

    private static final String FEMALE = "0";
    private static final String MALE = "1";
    public void attend(String value) {
        if (FEMALE.equals(value)) {
            //todo
        } else if (MALE.equals(value)) {
            //todo
        } else {
            //todo
        }
    }

Doesn't this make it much clearer? 0 and 1 Represents gender (of course, it needs to match your good variable naming habits).

2.2 using the interface

Since we use static constants, it is possible for us to encapsulate magic values into the interface.

public interface Gender {
    String FEMALE = "0";
    String MALE = "1";
}

2.3 using an enumeration

However, the significance of the interface is to provide abstract functions rather than storing some constant values, which obviously violates the original intention of the interface design. sojdk1.5Introduced enumeration types enum

public enum GenderEnum {
    FEMALE,
    MALE
}

In many cases, this writing is enough, and you can use GenderEnum.MALE.ordinal() Get the numerical sequence number corresponding to the enumeration, or you can use theGenderEnum.MALE.name() Gets the string name of the corresponding enumeration. They can be used for some logical identification in most cases. But it cannot satisfy our original design above. We need to modify the constructor of the enumeration class.

public enum GenderEnum {

    FEMALE("0"),
    MALE("1");

    private final String value;

    GenderEnum(String value) {
        this.value = value;

    }

    public String value() {
        return this.value;
    }
}

So that after rewriting it, we can pass value() The method gets the specific value.

Let's add more requirements to ourselves to make your enumeration more readable.

public enum GenderEnum {

    UNKNOWN("-1", "Unknown"),
    FEMALE("0", "Female"),
    MALE("1", "Male");

    private final String value;
    private final String description;

    GenderEnum(String value, String description) {
        this.value = value;
        this.description = description;
    }

    public String value() {
        return this.value;
    }

    public String description() {
        return this.description;
    }
}

description Value not only helps us know what the enumeration actually represents, but can even be returned to the front-end business as a description.

Tip: Try not to use Chinese statements, such as FEMALE Directly declared as women。Also, enumerations are singleton, so clone and deserialization cannot be used.

3. summary

Today we learned how to gracefully handle magic values in coding, especially enumeration schemes.

read more
Resource download
PriceFree
The use is limited to testing, experiments, and research purposes. It is prohibited for all commercial operations. This team is not responsible for any illegal behavior of users during use. Please self-test all source codes! There is no guarantee of the integrity and validity of your source code. All source code is collected from the entire network
Original link:https://bcbccb.cn/en/4483.html, please indicate the source for reprinting. Disclaimer: This resource has not been authorized by the original rights holder and is not commercially available. It can only be used to learn and analyze the underlying code, CSS, etc., and is prohibited for commercial purposes. Any relevant disputes and legal liabilities arising from unauthorized commercial use shall be fully borne by the user. Everyone is responsible to support genuine copies. Please delete them within 24 hours after downloading. Thank you for your support!
1

Comments0

经典海外游戏源码海外高端娱乐游戏源码全开源 带教程
Classic overseas game source code overseas high-end entertainment game source code fully open source with tutorial
Someone bought it 1 minute ago Go and have a look

Site Announcements

The source code (theme/plug-in/application source code) and other resources provided by this site are only for learning and exchange

Commercial use is prohibited, otherwise all consequences will be borne by the downloading user!

Some resources are collected or copied online. If they infringe on your legitimate rights and interests, please write to us.

Currently, members have a big reward, and the current price for a lifetime member is 299 gold coins.Recent price adjustments

Join quickly, opportunities wait for no one! immediately participated in

Captcha

Fast login to social accounts

en_USEnglish