个人工作笔记 本次搜索耗时 0.013 秒,为您找到 93 个相关结果.
  • 编译boost

    1708 2020-11-01 《Settings》
    install boost install boost ./ bootstrap . sh -- with - libraries = all -- with - toolset = gcc sudo ./ b2 install toolset = gcc link = static runtime - link = static
  • 4. 函数

    1660 2022-02-10 《C++ 编程》
    输入和输出 编写简短函数 引用参数 函数重载 缺省参数 函数返回类型后置语法 输入和输出 我们倾向于按值返回, 否则按引用返回。 避免返回指针, 除非它可以为空. 编写简短函数 引用参数 所有按引用传递的参数必须加上 const. 函数重载 若要使用函数重载, 则必须能让读者一看调用点就胸有成竹, 而不用花心思...
  • Source Code Directory Structure

    1635 2022-10-04 《Electron 源码浅析》
    Source Code Directory Structure Structure of Source Code Structure of Other Directories Source Code Directory Structure The source code of Electron is separated into a few pa...
  • 如何美化系统主题?

    1592 2022-05-03 《Linux》
    install tweaks install WhiteSur-gtk-theme install WhiteSur-icon-theme install tweaks sudo apt install gnome - tweak - tool install WhiteSur-gtk-theme git clone https : ...
  • Mac终端配置ssh免密登陆教程

    1491 2023-07-23 《Linux》
    Mac终端配置ssh免密登陆教程 原文链接:https://blog.csdn.net/weixin_43922901/article/details/106078558 该方法和什么终端无关,主要是根据ssh key方式登陆,无需远程主机登录密码,非常方便。 1 生成ssh秘钥和公钥文件 进入本地终端: ssh - keygen - ...
  • 社区

    Community 交流 Community The book offers a telegram chat group, feel free to join if you are interested: 交流 本书有以下读者 QQ 交流群,有兴趣的读者可以加入,加群需正确回答加群密码: 提示: bW9kZXJuLWNwcC10...
  • lldb command

    1309 2022-09-30 《C++ 编程》
    GDB to LLDB command map Below is a table of GDB commands with the LLDB counterparts. The built in GDB-compatibility aliases in LLDB are also listed. The full lldb command names a...
  • sed

    1162 2022-05-03 《Linux》
    语法 参数说明 动作说明 Linux sed 命令是利用脚本来处理文本文件。 sed 可依照脚本的指令来处理、编辑文本文件。 Sed 主要用来自动编辑一个或多个文件、简化对文件的反复操作、编写转换程序等。 语法 sed [- hnV ][- e < script >][- f < script 文件>][文本文件] 参数说明 -...
  • 如何修改数据源?

    1075 2022-05-03 《Linux》
    update source Get system codename backup the old source list update source list replace TODO as focal。 update source ali developer center: https://developer.aliyun.com/mir...
  • 高级

    1068 2022-02-10 《C++ 编程》
    条款2:尽量以const、enum、inline替换#define 条款3:尽可能地使用const 条款4:确定对象在使用前已被初始化 条款5:了解C++提供的默认函数 条款6:显式拒绝编译器生成的默认函数 条款7:为多态基类声明virtual析构函数 条款9:不要在构造和析构过程中调用virtual函数 条款10:令operator=返回一个*this...