上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 51 下一页
摘要: 转载来自:https://www.cnblogs.com/wswqwps/archive/2008/10/25/1319324.html CString转std::wstring std::wstring str = filename.GetString(); std::wstring转CStrin 阅读全文
posted @ 2021-08-16 09:11 冰糖葫芦很乖 阅读(309) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <string> #include <cstring> #include <atlbase.h> #include <Window 阅读全文
posted @ 2021-08-14 17:38 冰糖葫芦很乖 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 这个老哥说的很好 去看这个老哥的 https://blog.csdn.net/longji/article/details/53523808 阅读全文
posted @ 2021-08-14 10:12 冰糖葫芦很乖 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 最近用到了一个std::all_of 搜了一下 新增了若干:https://en.cppreference.com/w/cpp/algorithm/all_any_none_of 可以看这里 https://en.cppreference.com/w/cpp/algorithm 阅读全文
posted @ 2021-08-13 09:34 冰糖葫芦很乖 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://cloud.tencent.com/developer/article/1694105 全局变量 函数外+var定义 没有使用var 直接使用 用window定义 局部变量: 使用var再函数内 重名的话 1.在过程体内(包括方法function(){},对象Object 阅读全文
posted @ 2021-08-11 11:12 冰糖葫芦很乖 阅读(135) 评论(0) 推荐(0) 编辑
摘要: JSON: JavaScript Object Notation(JavaScript 对象标记法)。 //存储数据: myObj = { name:"Bill Gates", age:62, city:"Seattle" }; myJSON = JSON.stringify(myObj); loc 阅读全文
posted @ 2021-08-09 18:00 冰糖葫芦很乖 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 具体可以参考这个: https://stackoverflow.com/questions/50307180/chromium-mini-installer-ignores-branding/50308199#50308199 以及对比:https://blog.csdn.net/longji/ar 阅读全文
posted @ 2021-08-05 15:14 冰糖葫芦很乖 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 我是90版本的 可以参考这个 https://stackoverflow.com/questions/64166411/how-to-change-chromium-browser-logo-and-name 在这里把 Chromium 修改对应的产品名 src/chrome/app/theme/c 阅读全文
posted @ 2021-08-05 15:02 冰糖葫芦很乖 阅读(197) 评论(0) 推荐(0) 编辑
摘要: #include <vector> #include <winsock2.h> #include <Winhttp.h> #include <windows.h> #include <iostream> #include <fstream> #include <string> using names 阅读全文
posted @ 2021-08-04 16:37 冰糖葫芦很乖 阅读(633) 评论(0) 推荐(0) 编辑
摘要: #include <Windows.h> //将string转换成wstring wstring string2wstring(string str) { wstring result; //获取缓冲区大小,并申请空间,缓冲区大小按字符计算 int len = MultiByteToWideChar 阅读全文
posted @ 2021-08-04 09:52 冰糖葫芦很乖 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 51 下一页