Best practice: ordering of public/protected/private within the class definition?

后端 未结 10 1296
遥遥无期
遥遥无期 2020-12-12 14:34

I am starting a new project from the ground up and want it to be clean / have good coding standards. In what order do the seasoned developers on here like to lay things out

相关标签:
10条回答
  • 2020-12-12 14:35

    The best practice is to be consistent.

    Personally, I prefer putting public methods first, followed by protected methods, following by private methods. Member data should in general always be private or protected, unless you have a good reason for it not to be so.

    My rationale for putting public methods at the top is that it defines the interface for your class, so anyone perusing your header file should be able to see this information immediately.

    In general, private and protected members are less important to most people looking at the header file, unless they are considering modifying the internals of the class. Keeping them "out of the way" ensures this information is maintained only on a need to know basis, one of the more important aspects of encapsulation.

    0 讨论(0)
  • 2020-12-12 14:36

    In Clean Code, Robert C. Martin advises coders to always put member variables at the top of the class (constants first, then private members) and methods should be ordered in such a way so that they read like a story that doesn't cause the reader to need to jump around the code too much. This is a more sensible way to organize code rather than by access modifier.

    0 讨论(0)
  • 2020-12-12 14:46

    The sequence of public followed by protected and private is more readable to me, It's better to describe the class logic in comments at top of the header file simply and function call orders to understand what a class dose and algorithms used inside.

    I am using Qt c++ for a while and see some new sort of keywords like signal and slot I prefer to keep ordering like above and share my idea with you here.

    #ifndef TEMPLATE_H
    #define TEMPLATE_H
    
    
    class ClassName
    {
        Q_OBJECT
        Q_PROPERTY(qreal startValue READ startValue WRITE setStartValue)
        Q_ENUMS(MyEnum)
    
    public:
    
        enum MyEnum {
            Hello = 0x0,
            World = 0x1
        };
    
        // constructors
    
        explicit ClassName(QObject *parent = Q_NULLPTR);
        ~ClassName();
    
        // getter and setters of member variables
    
        // public functions (normal & virtual) -> orderby logic
    
    public slots:
    
    signals:
    
    protected:
    
        // protected functions it's rule followed like public functions
    
    
    private slots:
    
    private:
    
        // methods
    
        // members
    
    };
    
    #endif // TEMPLATE_H
    
    0 讨论(0)
  • 2020-12-12 14:48

    I used to care a lot. Over the last several years using modern IDEs pretty much everything is only 1 or 2 keystrokes away, I've let my standards relax substantially. Now, I start with statics, member variables, then constructors after that I don't worry about it much.

    In C# I do let Resharper organize things automatically.

    0 讨论(0)
  • 2020-12-12 14:51

    I think I have a different philosophy on this than most. I prefer to group related items together. I can't stand having to jump around to work with a class. The code should flow and using a rather artificial ordering based on accessibility (public, private, protected etc. ) or instance versus static or member versus property versus function doesn't help keep a nice flow. So if I nave a public method Method that is implemented by private helper methods HelperMethodA, HelperMethodB etc. then rather than have these method far apart from each other in the file, I will keep them close to each other. Similarly, if i have an instance method that is implemented by a static method, I will group these together too.

    So my classes often look like this:

    class MyClass {
        public string Method(int a) {
            return HelperMethodA(a) + HelperMethodB(this.SomeStringMember);
        }
    
        string HelperMethodA(int a) { // returns some string }
    
        string HelperMethodB(string s) { // returns some string }
    
        public bool Equals(MyClass other) { return MyClass.Equals(this, other); }
    
        public static bool Equals(MyClass left, MyClass right) { // return some bool }
    
        public double SomeCalculation(double x, double y) {
            if(x < 0) throw new ArgumentOutOfRangeException("x");
            return DoSomeCalculation(x, y); 
        }
    
        const double aConstant;
        const double anotherConstant;
        double DoSomeCalculation(double x, double y) {
            return Math.Pow(aConstant, x) * Math.Sin(y) 
                + this.SomeDoubleMember * anotherConstant;
        }       
    }
    
    0 讨论(0)
  • 2020-12-12 14:53

    Personally I like to have public at top, protected and then private. The reason for this is that when somebody cracks open the header he/she sees what he/she can access first, then more details as he/she scrolls down.

    One should not have to look at the implementation details of a class in order to use it, then the class design is not done well.

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