求一个用c语言编写的同学录系统或者通讯录系统。要简单的

2025-01-04 02:12:40
推荐回答(2个)
回答1:

ProcessRecord callerApp = null;
if (caller != null) {
callerApp = mService.getRecordForAppLocked(caller);
if (callerApp != null) {
callingPid = callerApp.pid;
callingUid = callerApp.info.uid;
} else {
Slog.w(TAG, "Unable to find app for caller " + caller
+ " (pid=" + callingPid + ") when starting: "
+ intent.toString());
err = ActivityManager.START_PERMISSION_DENIED;
}
}

回答2:

你好!都需要什么功能?添加、删除、修改?还要什么呢