0
翻譯我有這樣的循環在Java中:ColdFusion的XOR從Java
for (int i = 0; i < 16; i++) {
data[i] ^= INIT_VECTOR[i];
}
試圖轉換到ColdFusion的時候:
<cfscript>
for (i = 1; i < 17; i++) {
data[i] = data[i] XOR INIT_VECTOR[i];
}
</cfscript>
它引發以下錯誤:
You have attempted to dereference a scalar variable of type class [B as structure with members
請告訴我什麼是我的錯誤?
謝謝。
在CF中,「data」和「INIT_VECTOR」的定義是什麼? – QuantumMechanic 2011-04-17 16:09:43