What are the different kinds of cases?

后端 未结 4 1263
梦如初夏
梦如初夏 2021-01-30 00:06

I\'m interested in the different kinds of identifier cases, and what people call them. Do you know of any additions to this list, or other alternative names?

  • myIde
4条回答
  •  执笔经年
    2021-01-30 00:28

    MyVariable : Pascal Case => Used for Class

    myVariable : Camel Case => Used for variable at Java, C#, etc.

    myvariable : Flat Case => Used for package at Java, etc.

    my_variable : Snake Case => Used for variable at Python, PHP, etc.

    my-variable : Kebab Case => Used for css

提交回复
热议问题