我讀了一個幻燈片,他們有這樣的: int current = 0;
buffer[current]=0x00;
其中緩衝只是一個字符數組char buffer[300]; 如果0x00是空的表示,我們用NULL buffer[current]=NULL替換它提供了以下錯誤編譯時: assignment makes integer from pointer without a cast
有
我想切換2d字符數組中的兩個元素,但它不工作。我讀過其他類似的問題,temp變量應該是1d數組,但我不相信這是真的。任何人都可以幫助我理解爲什麼這不起作用? public static void moveTo(char[][] tissue, int i, int j){
char temp = tissue[i][j];
for(int k = 0; k < tissue.