我正在使用聊天机器人进行分配,它接受一个输入句子,在数组中查找某些触发器工作,并从中随机打印另一个响应数组的输出。我的问题是,当我键入诸如" No"之类的东西时,机器人会响应来自错误阵列的响应。 我的getResponse方法:
public static String getResponse(String input) {
if(doesContain(input, negatives)){
getRandResponse(negResponse);
}
//If none of the criteria is met, the bot will ask a random question from the questions array.
return getRandResponse(quesResponse);
}
和我的确认方法:
public static boolean doesContain (String input, String[] tArr){
//Where tArr is an array of trigger words, and input is the users input
for(String i: tArr){
if(indexOfKeyword(input, i) != -1){
System.out.println("doesContain = true");
return true;
}
}
return false;
}
indexOfKeyword方法检查一个触发词是否在另一个词的内部,例如no在知道内,并返回该词的索引(如果它不在另一个词内),否则返回-1。这是indexOfKeyword方法:
public static int indexOfKeyword( String s, String keyword ) {
s.toLowerCase();
keyword.toLowerCase();
int startIdx = s.indexOf( keyword );
while ( startIdx >= 0 ) {
String before = " ", after = " ";
if ( startIdx > 0 ) {
before = s.substring(startIdx - 1, startIdx);
}
int endIdx = startIdx + keyword.length();
if ( endIdx < s.length() ){
after = s.substring(endIdx, endIdx + 1);
}
if ((before.compareTo("a") < 0 || before.compareTo("z") > 0) && (after.compareTo("a") < 0 || after.compareTo("z") > 0)) {
return startIdx;
}
startIdx = s.indexOf(keyword, startIdx + 1);
}
return -1;
}
最后,我的getRandResponse方法:
public static String getRandResponse(String[] respArray){return respArray[random.nextInt(respArray.length)]; }
现在我的问题是,如果我键入&#34; no&#34;(这是否定数组中的触发词),或者来自数组的任何触发词作为输入,我会得到一个随机问题输出,而不是negResponse数组的响应。同样是&#34; doesContain = true&#34;正在打印,但它没有打印正确的响应。
答案 0 :(得分:0)
您需要在函数中添加一个返回值,否则永远不会返回negResponse
数组的响应,它将转到下一行并返回quesResponse
的响应:
public static String getResponse(String input) {
if(doesContain(input, negatives)){
// add return here:
return getRandResponse(negResponse);
}
//If none of the criteria is met, the bot will ask a random question from the questions array.
return getRandResponse(quesResponse);
}
此外,无论如何,您的doesContain
函数始终返回true。第二个return语句应更改为return false
。