会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
冰糖葫芦很乖
博客园
首页
新随笔
联系
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
51
下一页
2022年7月19日
std::tuple 和 std::tie 的用法简介
摘要: 转载来自:https://blog.csdn.net/m0_37809890/article/details/89367406 tuple即元组,可以理解为pair的扩展,可以用来将不同类型的元素存放在一起,常用于函数的多返回值。 定义与初始化tuple可以使用初始化列表进行赋值。 tuple<in
阅读全文
posted @ 2022-07-19 15:11 冰糖葫芦很乖
阅读(286)
评论(0)
推荐(0)
编辑
2022年7月18日
C++ 模板——类的静态成员变量的定义和使用
摘要: #include <algorithm> #include <iostream> using namespace std; class a { public: template<typename T> static void clearData(T& data) { data.clear(); da
阅读全文
posted @ 2022-07-18 17:59 冰糖葫芦很乖
阅读(240)
评论(0)
推荐(0)
编辑
把多个不连续的commit合并成一个commit
摘要: 转载来自:https://blog.csdn.net/qq_29518275/article/details/122052289 1.查看commit历史 2. 使用git rebase -i <需要合并的commit中最早的那个commit的前一个commit-ID>,启动rebase操作。 3.
阅读全文
posted @ 2022-07-18 10:54 冰糖葫芦很乖
阅读(1535)
评论(0)
推荐(0)
编辑
2022年7月14日
Chromium 解压压缩包
摘要: 转载:https://blog.csdn.net/jshiya/article/details/105999382 build加 "//third_party/zlib/google:zip", src/third_party/zlib/google该目录下是google为Chromium封装实现的
阅读全文
posted @ 2022-07-14 20:07 冰糖葫芦很乖
阅读(210)
评论(0)
推荐(0)
编辑
2022年7月12日
chromium 内置扩展
摘要: 参考来自:https://www.cnblogs.com/honker/p/6397591.html chrome\browser\extensions\component_extensions_allowlist\allowlist.cc case IDR_SYNC_COOKIES_MANIFES
阅读全文
posted @ 2022-07-12 20:00 冰糖葫芦很乖
阅读(429)
评论(0)
推荐(0)
编辑
2022年7月2日
Chromium 日志输出
摘要: 之前输出的日志都不知道去哪里 可以这么用 out\Default\chrome.exe --no-sandbox --enable-logging 就可以输出其他进程的数据了
阅读全文
posted @ 2022-07-02 10:03 冰糖葫芦很乖
阅读(200)
评论(0)
推荐(0)
编辑
2022年7月1日
Chromium 的 Cookie 机制
摘要: 转载来自:https://blog.wandoer.com/coding/chromium-%e7%9a%84-cookie-%e6%9c%ba%e5%88%b6.htm#more-1341 Cookie 指某些网站为了辨别用户身份而储存在用户本地终端(Client Side)上的数据,它是一种古老
阅读全文
posted @ 2022-07-01 11:45 冰糖葫芦很乖
阅读(620)
评论(0)
推荐(0)
编辑
Chromium shutdown
摘要: 参考文档: https://www.chromium.org/developers/shutdown/ https://chromium.googlesource.com/chromium/src.git/+/HEAD/docs/shutdown.md#Step-0_Profile-destruct
阅读全文
posted @ 2022-07-01 11:25 冰糖葫芦很乖
阅读(260)
评论(0)
推荐(0)
编辑
2022年6月30日
git tag
摘要: https://git-scm.com/book/zh/v2/Git-%E5%9F%BA%E7%A1%80-%E6%89%93%E6%A0%87%E7%AD%BE 打标签 列出标签 在 Git 中列出已有的标签非常简单,只需要输入 git tag (可带上可选的 -l 选项 --list): $ g
阅读全文
posted @ 2022-06-30 17:58 冰糖葫芦很乖
阅读(156)
评论(0)
推荐(0)
编辑
如何从C中调用C++函数
摘要: 转载来自:https://zhuanlan.zhihu.com/p/361485807 假设我们有一个C++类 Robot,在文件 robot.h 和 robot.cpp 中定义。Robot 类中有个成员函数 sayHi() 我们想在C程序中调用这个函数。 robot.h #pragma once
阅读全文
posted @ 2022-06-30 10:45 冰糖葫芦很乖
阅读(1605)
评论(0)
推荐(0)
编辑
上一页
1
···
3
4
5
6
7
8
9
10
11
···
51
下一页