请有人解释下面突出显示的代码行。我完全不明白这条线是如何工作的。
您可以使用此示例来帮助我:
输入:攻击 关键词:柠檬 资源:LXFOPV
我不明白那条线如何帮助编码A
和L
其他字母...... ACSII 参与?
static String encrypt(String text, final String key) {
String res = "";
text = text.toUpperCase();
for (int i = 0, j = 0; i < text.length(); i++) {
char c = text.charAt(i);
if (c < 'A' || c > 'Z') continue;
////////////////////////////////////////////////////////////////////////////
//please someone explain this line
res += (char)((c + key.charAt(j) - 2 * 'A') % 26 + 'A');
////////////////////////////////////////////////////////////////////////
j = ++j % key.length();
}
return res;
}