DEV Community

Discussion on: What conventional wisdom in software is wrong?

 
codemouse92 profile image
Jason C. McDonald

The _ convention should depend on your language's scoping rules. In Python, where there is no formal private scope, the _ convention is reasonable. However, in C++ or Java, where such scope is explicitly declared, the _ basically becomes noise, in the same manner as Systems Hungarian notation.