我的班级无法查看我的方法$('.items:visible').each(function(index) {
setTimeout(function() {
executeNow(args....);
}, 1000 * (index + 1));
});
:
select
它给了我这个错误:
找不到
的合适方法public void select(String tableName, ArrayList<String> columns , int startOfLimit , int endOfLimit) { query = "SELECT "+columns.get(0) ; for (int i = 1; i < columns.size(); i++) query += " , "+columns.get(i); query += " FROM "+tableName+" "; super.conditions += " LIMIT " + startOfLimit + " , " + endOfLimit; selectExecute(); }
我称之为
select(String, ArrayList<String>, int, int)
//变量数组是一个arraylist
答案 0 :(得分:-1)
假设两者都是不同的类。将选择函数设置为静态将解决您的问题。