接口的旧特性: 就特性下接口中只有: 常量(必须赋值) 抽象方法abstract(和final static private三个关键字冲突) interface Inter { //int a ; //编译报错 常量必须要赋值不能使用默认值. int a = 10; // 前面有默认修饰符 public static final //void show(){} //编译报错 抽象方法必须没有方法体 void show(); //前面有默认修饰符 public abstract } 接口的新特性:…
打开靶机 下载完成后,为一张二维码图片 使用StegSolve 解出隐写图像 保存后使用PS或其他工具去除白边 然后使用脚本分割这个图像(25*25) from PIL import Image im = Image.open('solved.bmp') id = 0 for i in range(0, 25): for j in range(0, 25): box = (25 * i, 25 * j, 25 * (i + 1), 25 * (j + 1)) im.crop(box).resiz…