Is using underscore suffix for members beneficial?

后端 未结 13 2060
猫巷女王i
猫巷女王i 2020-12-29 03:58
class C {
 private:
  int member_; // here is the underscore I refer to.
}

This underscore is recommended by Google Style Guide and Geosoft\'s C++

相关标签:
13条回答
  • 2020-12-29 04:50

    To me the benefit of this style of decorating member variables is it works well with auto complete functionality of text editors. Having a prefix decoration requires you to type more characters before a solid guess on what you mean can be made.

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