本文介绍了获取MFC中的数组位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以获得阵列的位置?
示例:
Hi,
Is it possible to get the position of an array?
Example:
int iArray[] = {2, 3, 10, 35, 5, 87, 9, 6};
iValue = m_iValue // m_iValue = 5 -> from database
现在我得到了iValue,但我想在iArray中搜索这个值并得到它的位置 - 这里它将是iValue = 5所以位置必须是4 => iArray [4]。
C ++中有什么方法吗?
问候
Epanjohura
Now i got "iValue" but I want to "search" this value in "iArray" and get its position - here it would be iValue = 5 so the position must be 4 => iArray[4].
Is there any method in C++ for that?
Greetings
Epanjohura
推荐答案
这篇关于获取MFC中的数组位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!