今天一直报错:
bash: /root/data1/anaconda3/envs/li_3_10/bin/pip: /root/lsc/anaconda3/envs/li_3_10/bin/python: bad interpreter: No such file or directory
原来是root/data1/anaconda3/envs/li_3_10/bin/pip: 这个位置的pip 自身带默认路径,然…
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 -> …}