public static ImageUtilEngine getImageEngine() { return imageEngine; }
这个是什么啊。。。。。。。。纠结了一个多星期的东西
忽然间看到了
/** A safe way to get an instance of the Camera object. */ public static Camera getCameraInstance(){ Camera c = null; try { c = Camera.open(); // attempt to get a Camera instance } catch (Exception e){ // Camera is not available (in use or does not exist) } return c; // returns null if camera is unavailable }
原来 ImageUtilEngine 是一个类,然后看最后有return;
哦原来是返回值为类的函数,就好比c语言中返回值为结构体的函数。
时间: 2024-10-13 15:07:09