Are hard-coded STRINGS ever acceptable?

后端 未结 9 968
臣服心动
臣服心动 2021-01-07 04:21

Similar to Is hard-coding literals ever acceptable?, but I\'m specifically thinking of \"magic strings\" here.

On a large project, we have a table of configuration o

相关标签:
9条回答
  • 2021-01-07 04:57

    I realise the question is old, but it came up on my margin.

    AFAIC, the issue here has not been identified accurately, either in the question, or the answers. Forget about 'harcoding strings" or not, for a moment.

    1. The database has a Reference table, containing config_options. The PK is a string.

    2. There are two types of PKs:

      • Meaningful Identifiers, that the users (and developers) see and use. These PKs are supposed to be stable, they can be relied upon.

      • Meaningless Id columns which the users should never see, that the developers have to be aware of, and code around. These cannot be relied upon.

    3. It is ordinary, normal, to write code using the absolute value of a meaningful PK IF CustomerCode = "IBM" ... or IF CountryCode = "AUS" etc.

      • referencing the absolute value of a meaningless PK is not acceptable (due to auto-increment; gaps being changed; values being replaced wholesale).
        .
    4. Your reference table uses meaningful PKs. Referencing those literal strings in code is unavoidable. Hiding the value will make maintenance more difficult; the code is no longer literal; your colleagues are right. Plus there is the additional redundant function that chews cycles. If there is a typo in the literal, you will soon find that out during Dev testing, long before UAT.

      • hundreds of functions for hundreds of literals is absurd. If you do implement a function, then Normalise your code, and provide a single function that can be used for any of the hundreds of literals. In which case, we are back to a naked literal, and the function can be dispensed with.

      • the point is, the attempt to hide the literal has no value.
        .

    5. It cannot be construed as "hardcoding", that is something quite different. I think that is where your issue is, identifying these constructs as "hardcoded". It is just referencing a Meaningfull PK literally.

    6. Now from the perspective of any code segment only, if you use the same value a few times, you can improve the code by capturing the literal string in a variable, and then using the variable in the rest of the code block. Certainly not a function. But that is an efficiency and good practice issue. Even that does not change the effect IF CountryCode = @cc_aus

    0 讨论(0)
  • 2021-01-07 05:00

    I believe that the two reasons you have mentioned, Possible misspelling in string, that cannot be detected until run time and the possibility (although slim) of a name change would justify your idea.

    On top of that you can get typed functions, now it seems you only store booleans, what if you need to store an int, a string etc. I would rather use get_foo() with a type, than get_string("FOO") or get_int("FOO").

    0 讨论(0)
  • 2021-01-07 05:03
    if (config_options.isTrue('FOO_ENABLED')) {...
    }
    

    Restrict your hard coded Y check to one place, even if it means writing a wrapper class for your Map.

    if (config_options.isFooEnabled()) {...
    }
    

    Might seem okay until you have 100 configuration options and 100 methods (so here you can make a judgement about future application growth and needs before deciding on your implementation). Otherwise it is better to have a class of static strings for parameter names.

    if (config_options.isTrue(ConfigKeys.FOO_ENABLED)) {...
    }
    
    0 讨论(0)
提交回复
热议问题