Closed. This question is opinion-based。它当前不接受答案。












想改善这个问题吗?更新问题,以便editing this post用事实和引用来回答。

4年前关闭。



Improve this question




什么是c++广泛接受的命名约定? (函数,类,参数,局部变量, namespace 等)

最佳答案

我认为C++中没有“被广泛接受”的命名约定。 Stroustrup的书籍和论文通常具有以下编码样式:

class Shape {
public: // interface to users of Shapes
    virtual void draw() const;
    virtual void rotate(int degrees);
    // ...
protected:  // common data (for implementers of Shapes)
    Point center;
    Color col;
    // ...
};

您可能还想看看流行的样式指南,例如The Google C++ Style Guide

关于c++ - C++命名约定,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4883027/

10-10 16:19