0%

所有指令都有1个共同特点,就是如果有2个操作数的话,两个操作数不能同时在内存

数据传送类指令

数据传送指令都不影响标志位

阅读全文 »

按数字从小到大遍历文件夹

1
for root, _, images in tqdm(sorted(os.walk(src_path)))

按数字从小到大遍历文件

1
for image in sorted(images, key=lambda x : int(os.path.splitext(x)[0]))

sorted()中

images作用:待排序的列表

key表示sorted中用于排序的规则

匿名函数:lambda x : int(os.path.splitext(x)[0])

System.arraycopy(src, srcPos, dest, destPos, length)

阅读全文 »