Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果类名 a 是大写字母的缩写,如“CORS”,则类名必须仍为 StudlyCaps,如下所示:
class Cors { }
以下是我的偏好方式,但我想知道它是否是反模式:
class CORS { }
这是明确说明的:
类名必须在 StudlyCaps 中声明。 类常量必须用下划线分隔符全部大写。
类名必须在 StudlyCaps 中声明。
类常量必须用下划线分隔符全部大写。
在这两种情况下都没有例外。CORS是一个常数,Cors是一个类。根据定义,这是规范的绝对要求。如果你想遵守一个标准,你就不必挑选哪些部分。
CORS
Cors