gpt4 book ai didi

java - 如何使用 this.sample() - 而不是 this.cursor.getInt()

转载 作者:行者123 更新时间:2023-12-01 14:45:21 26 4
gpt4 key购买 nike

final String query = "SELECT " +
"questiontable.QuestionID, questiontable.answer0, questiontable.answer1, questiontable.answer2, questiontable.answer3, questiontable.answer4, questiontable.Correct, " +
" FROM questiontable" +

" WHERE questiontable.QuestionID IN ( " +
allQuestionIds +
" ) ORDER BY questiontable.QuestionID ";
this.cursor = this.db.rawQuery(query, null);

if (this.cursor.moveToFirst()) {
do {
for (final Question q : questions) {
if (q.getQuestionId() == this.cursor.getInt(0)) {
q.addAnswer(new Answer(this.cursor.getString(1),
this.cursor.getString(2),
this.cursor.getString(3),
this.cursor.getString(4),
this.cursor.getString(5),
(this.cursor.getInt(6) == 1 ? true : false)));
}
}
} while (this.cursor.moveToNext());
}
this.cursor.close();

我想添加this.sample(),例如:

             q.addAnswer(new Answer(this.sample(),
this.cursor.getString(1),
this.cursor.getString(2),
this.cursor.getString(3),
this.cursor.getString(4),
this.cursor.getString(5),
(this.cursor.getInt(6) == 1 ? true : false)));

我想做的事:

*创建一个sample()方法来获取我的整数值(AnswerID)

*AnswerID 将是一个整数值,取 QuestionID (this.cursor.getInt(0)) 及其附近的整数值; 0 到 4 之间的数字。因此,对于每个 QuestionID,我将有 5 个值 (10,11,12,13,14 - 20,21,22,23,24 - ......)

*使用 this.sample()

我的代码是我想象的(可能完全错误)

 void sample (int AnswerID) {
for (int i = 0; i < 5; i++) {
AnswerID = this.cursor.getInt(0) + i ;
}
this.sample = sample;

}

最佳答案

您不能这样做,因为您的方法是 void。
Void - 不返回任何内容。

void sample (int AnswerID) {
..
}

如果你想计算一些东西,你可以尝试创建返回的方法 整数的 arrayList 并将其作为参数传递给 q.addAnswer 方法。

public  ArrayList<Integer>  sample(Cursor cur) {

ArrayList<Integer> numbers= new ArrayList<Integer>();
numbers.add(cur.getInt(0));//first test case
...
//numbers is array list of integers
return numbers;
}

因此您可以使用整数数组列表。

关于java - 如何使用 this.sample() - 而不是 this.cursor.getInt(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15478029/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com