多选题 When apply naming conventions, which Java elements should start with a capital letter and continue on using the camel case convention?
  • A. Class names
  • B. Interface names
  • C. Constant names
  • D. Package names
  • E. All of the above
【正确答案】 A、B
【答案解析】类名和接口名应该以大写字母开头,并且继续使用驼峰命名规范。C和D不正确。C不正确,因为常量名应该全部是以下划线分隔的大写字母。D不正确,因为包名不包括大写字母,也不必遵守驼峰命名规范。