Stream 处理方法就是
获取流中间处理流的终结 filter是限制条件foreach是进行遍历
常见数据类型获取Stream的方法
list List<String> list new ArrayList<>();Collections.addAll(list,"刘德华","古天乐","德玛西亚","艾欧…
openssl下载和编译 https://www.openssl.org/source/old/
解压
tar -xvf openssl-3.0.1.tar.gz
cd openssl-3.0.1/配置
./config如果是编译静态库加入 -fPIC no-shared 如果指定安装路径,使用 --prefix=/usr/local/openssl/选项指定特定目录 编译和安装
make
sodu make i…