在此JavaBeans上的Oracle文档中,我们看到:
public class FaceBean {
private int mMouthWidth = 90;
public int getMouthWidth() {
return mMouthWidth;
}
public void setMouthWidth(int mw) {
mMouthWidth = mw;
}
}
Run Code Online (Sandbox Code Playgroud)
不应该是财产mouthWidth吗?