摘要:
添加 Runtime Libraries 在 Visual Studio 项目属性中,选择发布,选择系统必备组件,然后选中 Visual C++ Runtime Libraties,选中“从与我的应用程序相同的位置下载系统必备组件” 下载 下载 vc_redist 放入 C:\Program Fil 阅读全文
摘要:
u盘 启动 debian live 系统 ```bash sudo su mkdir /mnt/ubuntu # 我的 / 分区在 /dev/sda5 mount /dev/sda5 /mnt/ubuntu if [ ! -d "/mnt/ubuntu/dev/pts" ]; then mkdir 阅读全文
摘要:
对于`std::optional`对应的内存布局为 ```c++ struct optional_mem { int _M_payload; bool _M_engaged; }; ``` 可以通过[godbolt](https://godbolt.org "godbolt")通过pahole工具查 阅读全文