Am I immoral for using a variable name that differs from its type only by case?

前端 未结 10 1133
旧时难觅i
旧时难觅i 2021-02-11 11:58

For instance, take this piece of code:

var person = new Person();

or for you Pythonistas:

person = Person()

I

10条回答
  •  灰色年华
    2021-02-11 12:22

    If the Person is a general Person in the context, then "person" is a really good name. Of course if the Person has a specific role in the code then it's better to name her using the role.

提交回复
热议问题