实习入职第六天:getFields()和getDeclaredFields()

getFields()获得某个类的所有的公共(public)的字段,包括父类。 

getDeclaredFields()获得某个类的所有申明的字段,即包括public、private和proteced,
但是不包括父类的申明字段。 

同样类似的还有getConstructors()和getDeclaredConstructors(),

getMethods()和getDeclaredMethods()。


surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS) is deprecated

 if(Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);



你可能感兴趣的:(实习)