看板 C_and_CPP 關於我們 聯絡資訊
請問要怎用 vc設中段點 或開啟某個視窗 看整個array的變數值呢? 好比 unsigned int n; float a; a = (float*)malloc(n*sizeof(float)) for(unsigned int i = 0; i< n; i++) a[i] = (float)i; 把中斷點設在 a[i] = (float)i; 下面一行 滑鼠移到 a這指標上 只能看到 a[0] 的數值 用 watch1 這視窗 也只能指定 i 等於某個數值時的 a[i] 為多少 沒辦法看到一整條的 a[i] 值 請問有辦法一次看整條a的值嗎 。 (用起來就和把a設成stack一樣, 移上去就一整排 a) 謝謝。 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 59.120.158.204
legnaleurc:watch a,10 07/14 18:12