今天遇到的需求要从Uinty里调用选择程序外的图片,类似手机环境下拿图库的照片一样。
效果如下: 话不多说 直接上代码!
1.编辑器模式下
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
using Syst…
HashSet的不安全问题
HashSet与ArrayList一样也存在不安全的问题,当多线程时也会出现ConcurrentModificationException,并发修改异常需要提出解决方案
问题
public static void main(String[] args) {Set<Integer> set new HashSet<>();…