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/11/22 06:47:37
Java题目:WhichmethodnamedoesnotfollowtheJavaBeansstandardonAccessor/Mutator?1.Whichmethodnamedoesnotfo
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不符合