What is the name of this bad practice / anti-pattern?

前端 未结 14 2087
独厮守ぢ
独厮守ぢ 2021-02-03 18:02

I\'m trying to explain to my team why this is bad practice, and am looking for an anti-pattern reference to help in my explanation. This is a very large enterprise app, so here

相关标签:
14条回答
  • 2021-02-03 18:37

    It is just a bad code, it does not have a name for it (it doesn't even have an OO design). But the argument could be that the first code does not fallow Open Close Principle. What happens when list of supported things change? You have to rewrite the method you're using.

    But the same thing happens when you use the second code snippet. Lets say the supporting rule changes, you'd have to go to the each of the methods and rewrite them. I'd suggest you to have an abstract Support Class and pass different support rules when they change.

    0 讨论(0)
  • 2021-02-03 18:38

    Since you don't show what the code really is for it's hard to give you a robust sulotion. Here is one that doesn't use any if clauses at all.

    // invoked to map different kinds of items to different features
    public void BootStrap
    {
        featureService.Register(typeof(MyItem), new CustomFeature());
    }
    
    // your code without any ifs.
    public void ControlStuff()
    {
        var listOfThings = LoadThings();
        foreach (var thing in listOfThings)
        {
            thing.InvokeFeatures();
        }
    }
    
    // your object
    interface IItem
    {
        public ICollection<IFeature> Features {get;set;}
    
        public void InvokeFeatues()
        {
            foreach (var feature in Features)
                feature.Invoke(this);
        }
    }
    
    // a feature that can be invoked on an item
    interface IFeature
    {
        void Invoke(IItem container);
    }
    
    // the "glue"
    public class FeatureService
    {
    
        void Register(Type itemType, IFeature feature)
        {
            _features.Add(itemType, feature);
        }
    
        void ApplyFeatures<T>(T item) where T : IItem
        {
            item.Features = _features.FindFor(typof(T));
        }
    }
    
    0 讨论(0)
  • 2021-02-03 18:39

    I would call it a Failure to Encapsulate. It's a made up term, but it is real and seen quite often

    A lot of people forget that encasulation is not just the hiding of data withing an object, it is also the hiding of behavior within that object, or more specifically, the hiding of how the behavior of an object is implemented.

    By having an external DoSomething(), which is required for the correct program operation, you create a lot of issues. You cannot reasonably use inheritence in your list of things. If you change the signature of the "thing", in this case the string, the behavior doesn't follow. You need to modify this external class to add it's behaviour (invoking DoSomething() back to the derived thing.

    I would offer the "improved" solution, which is to have a list of Thing objects, with a method that implements DoSomething(), which acts as a NOOP for the things that do nothing. This localizes the behavior of the thing within itself, and the maintenance of a special matching list becomes unnecessary.

    0 讨论(0)
  • 2021-02-03 18:44

    I don't think it has a name but maybe check the master list at http://en.wikipedia.org/wiki/Anti-pattern knows? http://en.wikipedia.org/wiki/Hard_code probably looks the closer.

    I think that your example probably doesn't have a name - whereas your proposed solution does it is called Composite.

    http://www.dofactory.com/Patterns/PatternComposite.aspx

    0 讨论(0)
  • 2021-02-03 18:44

    Instead of using interfaces, you could use attributes. They would probably describe that the object should be 'tagged' as this sort of object, even if tagging it as such doesn't introduce any additional functionality. I.e. an object being described as 'Thing A' doesn't mean that all 'Thing A's have a specific interface, it's just important that they are a 'Thing A'. That seems like the job of attributes more than interfaces.

    0 讨论(0)
  • 2021-02-03 18:45

    There is a perfectly reasonable situation where this coding practice makes sense. It might not be an issue of which things actually support X (where of course an interface on each thing would be better), but rather which things that support X are ones that you want to enable. The label for what you see is then simply configuration, presently hard-coded, and the improvement on this is to move it eventually to a configuration file or otherwise. Before you persuade your team to change it I would check this is not the intention of the code you have paraphrased.

    0 讨论(0)
提交回复
热议问题