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);
}
本文标题:AIDL执行build 报错
本文链接:https://www.haomeiwen.com/subject/gujrmttx.html
网友评论