Restating the obvious about the WM_COMMAND message - The Old New Thing (microsoft.com)https://devblogs.microsoft.com/oldnewthing/20060302-10/?p32093
Raymond Chen 2006年03月02日 关于 WM_COMMAND 消息的显而易见的知识点补充 简要 本文详细解释了 WM_COMMAND 消息…
数组遍历
1. for ( item in arr){…}
2. for ( i in arr.indeces ) {…} (遍历下标)
3. for ((index, item) in arr.withInfex()) {…} (遍历下标和元素)
4. arr.forEach {} ( 遍历元素 )
5. arr.forEachIndexed{index, item -> …}