05 2021 档案
摘要:#include <iostream> using namespace std; int main() { unsigned char uch = 233; char ch = (char)uch; unsigned char nuch = (unsigned char)ch; cout << (i
阅读全文
摘要:#include <iostream> #include <vector> // 点 class Node { public: int x; int y; }; // 保存每个块的左上角和右下角的坐标 class BlockData { public: Node lp; Node rp; }; //
阅读全文
摘要:一般是在图片加载完成之后再释放,就是用了之后再释放。 const blob = new Blob([res.data], {type: 'image/jpeg'}); src = window.URL.createObjectURL(blob) // 创建图片 window.URL.revokeOb
阅读全文