Java题目:Which method name does not follow the JavaBeans standard on Accessor/Mutator?1. Which method name does not follow the JavaBeans standard on Accessor/Mutator?C A.getSize B.setCustC.notAvailable D.isReadable

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/15 05:23:04
Java题目:Which method name does not follow the JavaBeans standard on Accessor/Mutator?1. Which method name does not follow the JavaBeans standard on Accessor/Mutator?C A.getSize B.setCustC.notAvailable D.isReadable

Java题目:Which method name does not follow the JavaBeans standard on Accessor/Mutator?1. Which method name does not follow the JavaBeans standard on Accessor/Mutator?C A.getSize B.setCustC.notAvailable D.isReadable
Java题目:Which method name does not follow the JavaBeans standard on Accessor/Mutator?
1. Which method name does not follow the JavaBeans standard on Accessor/Mutator?C
A.getSize B.setCust
C.notAvailable D.isReadable

Java题目:Which method name does not follow the JavaBeans standard on Accessor/Mutator?1. Which method name does not follow the JavaBeans standard on Accessor/Mutator?C A.getSize B.setCustC.notAvailable D.isReadable
没有按照javabean 标准的命名规范,也就是get/set方法
如果是bool类型的,一般在属性名称前加is
C不符合