aidl 里头定义的接口 是不支持重载的
interface IMyMsgSQL {
//查询
String queryPage(int page, int count);//方法名相同会报错
String query();
//新增
long insert(String msg);
int update(int id, String msg);
int delete(int id);
}
aidl 里头定义的接口 是不支持重载的
interface IMyMsgSQL {
//查询
String queryPage(int page, int count);//方法名相同会报错
String query();
//新增
long insert(String msg);
int update(int id, String msg);
int delete(int id);
}