To camelCase or not to camel_case

前端 未结 3 1333
广开言路
广开言路 2021-02-05 15:27

What is the standard when coding in Java, when do you use camel case when do you use underscores etc.

3条回答
  •  轮回少年
    2021-02-05 16:02

    ClassName

    • Renderer
    • HttpSession

    methodName

    • applyTo()
    • run()

    instanceVariable / localVariable

    • currentUser
    • threadList

    CONSTANT_NAME

    • LOG
    • DEFAULT_CONTEXT

    G (Generic Type Parameter)

    • T
    • E

提交回复
热议问题