我不确定是否有办法做到这一点。我的作业是这样说的,但我很确定没有这样的方法:
CStringArray m_Last;
int size = m_Last.GetCount();
// In the .h file I have,
#define IDM_LAST 90// these are to be used for contiguous Resource ID's
const int MAXLAST = 5; // there are 5 Resource IDs
for(int i = 0, j = IDM_LAST; i < size, j < IDM_LAST + MAXLASTUSEDDEST; ; i++, j++)
{
menuAPopup.AppendMenu(MF_STRING, j, m_Last.ElementAt(i));
}
这里有一种方法可以让 for 循环使用 1 个变量,i
或者j
?