问答详情
源自:4-3 post上传文件

为何mPhoto写成private就不行

mPhoto写成private,

if (mPhoto == null) {

System.out.println(mPhotoFileName +" is null");

}

就会进入到这里,mPhoto为空,读取不到

get  set方法写了也不行

提问者:uncle_light 2018-12-28 20:38

个回答

  • qq_头头猫_0
    2019-06-16 15:02:05

    因为如果为private的话,外部无法操作,的在内部生成setter,getter方法来对mPhoto赋值