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);
}