布尔值的命名约定是什么?

时间:2018-07-19 15:36:05

标签: naming-conventions naming conventions coding-style

应该如何命名布尔值,以及它们的标准命名约定是什么?

1 个答案:

答案 0 :(得分:2)

布尔值遵循标准的命名约定,例如:

  • 具有描述性
  • 矮胖的

此外,它还应包含以下前缀之一:

  • 应该

例如:

wasTested = true;
isFormLoading = false;
this.shouldDelete = true;