【简答题】下面代码是某个自定义 ContentProvider 类的程序片断,请简要说明其功能。 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { SQLiteDatabase db = dbHelper.getRe...
【简答题】Android 应用开发中对于那些运行在主线程中并且执行时间较长的后台服务,为了避免应用发生无响应异常而崩溃,通常会在 Service 类的内部创建一个单独的线程,如下面程序片断,请逐行注释该程序片断,并简要说明其功能。 public int onStartCommand(Intent intent, int falg, int startid){ Log.v("CountService", "o...
【简答题】已知:a n =2 n-1 则10a 1 +9a 2 +8a 3 +…+3a 8 +2a 9 +a 10 =______.
【简答题】A.(5*1+2+3+6)/8 B.(5*1+2+3+6)/9 C.(8*1)/8 D.(8*1)/9
【简答题】计算: (- 3 ) 2 - 9 - 3 -8 - 1+ 9 16 + (- 1 2 ) 2 -| 2 -3 |-( 2 -1 )
【简答题】下面代码是某个自定义 ContentProvider 类的程序片断,请简要说明其功能。 public Uri insert(Uri uri, ContentValues values) { SQLiteDatabase db = dbHelper.getWritableDatabase(); Uri uriReturn = null; switch (uriMatcher.match(uri)) ...
【简答题】计算: (1)﹣9+12﹣3+8 (2)3﹣ ×(8﹣1 ﹣ ) (3)﹣2 4 ﹣(﹣5 )× +(﹣2) 3 (4)(﹣2) 3 ﹣2×(﹣3)+|2﹣5|﹣(﹣1) 2010 .
【简答题】请简要说明下面程序片断功能。 public static final int TABLE1_DIR = 0; public static final int TABLE1_ITEM = 1; public static final int TABLE2_DIR = 2; public static final int TABLE2_ITEM = 3; private static UriMatch...