Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个多维结构数组。我想知道的是,如果我已经知道该行,如何将一个值放在下一列。
例如,如果第 4 行和第 0 列的值等于我想把它放在下一列的东西。
这是我所拥有的:
for(j=0; j<numWays;j++){ if(something){ ways[getIndex(address)][j+1].tag = zero; } }
但它不工作......有人可以帮助我吗?
你可以做这样的事情(假设查询的值不是行上的最后一个对象):
for (int i = 0; i < array[row].length-1; i++) { if (array[row][i] != QUERY) { array[row][i+1] = QUERY } }