我正在使用javascript制作一个刽子手游戏,而且我无法理解这一功能中的代码。
这是功能:
function getLetter(word,letter,display){
// This method is called by the Hangman program when your isLetterInWord function
// above returns true.
// The parameters passed in are the guessed letter, the secret word,
// and the current display state of the secret word.
// This method will return a new display state of the secret word based on the matching letter.
// REPLACE THIS CODE WITH YOUR getLetter() METHOD
while (word.search(letter) != -1) {
var index=word.search(letter)
display = display.substr(0, index) + letter + display.substr(index + 1);
word = word.substr(0, index) + '-' + word.substr(index + 1);
}
return display;
}
我不太了解的部分:
display = display.substr(0, index) + letter + display.substr(index + 1);
word = word.substr(0, index) + '-' + word.substr(index + 1);
基本上这个程序需要一个单词,找到字母数并用连字符替换它们。 例如“船”这个词。将转向' ----'
上述函数的作用是用相应的连字符替换字母猜测(正确)。
以下是整个项目的背景代码。
// Hangman Project
//RETURN A 'HIDDEN' VERSION OF THE SUPPLIED SECRET WORD
function getDisplay(word)
{
// Given a string, "word", return a hidden version of it consisting
// of dashes for the display.
// REPLACE THIS CODE WITH YOUR getDisplay() METHOD
var disp="";
for (var i=0; i < word.length; i++ ){
disp = disp +'-';
}
return disp;
}
//FIND IF THE LETTER IS IN THE WORD
function isLetterInWord(word,letter){
// Given the word "word", check if it contains the letter "letter".
// REPLACE THIS CODE WITH YOUR isLetterInWord() METHOD
if(word.search(letter) != -1) {
return true;
} else {
return false;
}
}
任何解释这两条车道的帮助都将受到赞赏。感谢。
答案 0 :(得分:1)
假设该字词为animal
,且播放器已正确猜到a
和l
。输入将是:
word = "animal"
letter = "i"
display = "a---al"
按照代码:
var index = word.search(letter);
现在index = 2
(计数从0开始)。
word = word.substr(0, index) + letter + word.substr(index+1);
word.substr(0, 2)
是"a-"
。 word.substr(3)
是"-al"
。所以当所有内容都连接在一起时word = "a-i-al"
。
index+1
跳过被替换的角色。
下一行
word = word.substr(0, index) + '-' + word.substr(index + 1);
类似,用-
替换找到的字母。如果字母在单词中出现多次(例如a
中的animal
),则需要这样做,以便while
循环不会继续尝试替换相同的位置