原文:https://bbs.csdn.net/topics/340010860 路径:Tools -> Display Preferences(显示参数选择) -> Format -> Table -> Modify -> Fill -> Fill color -> More Colors -> ...
分类:
其他好文 时间:
2020-07-22 15:58:22
阅读次数:
176
学习C++的shared_ptr智能指针你可能会碰到一个问题,循环引用为什么会出现问题?为什么不能释放?C++不是保证了对象构造成功退出作用域时就绝对会调用析构函数吗,调用析构函数不也会调用成员变量和父类的析构函数吗,为什么还不能释放呢?难道是编译器有bug? 非也,原因是一句绕口令式的答案:你以为 ...
分类:
其他好文 时间:
2020-07-19 23:46:32
阅读次数:
114
This section describes lock types used by InnoDB. 翻译:本节描述了InnoDB使用的锁类型。 Shared and Exclusive Locks(共享锁和排他锁) Intention Locks(意向锁) Record Locks(记录锁) Gap ...
分类:
数据库 时间:
2020-07-18 22:25:46
阅读次数:
107
部分内容参考:https://www.cnblogs.com/corgi/p/5405453.html 本文章地址:https://www.cnblogs.com/LynnVon/p/13334523.html 当我按照文章做完之后,editor模式下完全没问题,Standalone模式下也没问题, ...
分类:
其他好文 时间:
2020-07-18 11:35:04
阅读次数:
109
error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory 在CentOS 7.6 操作系统的机器上安装 MySQL 过程中,执行安装命令报 ...
分类:
其他好文 时间:
2020-07-17 13:34:29
阅读次数:
60
from docx import Document from docx.shared import Cm 文件=Document(r'E:\word练习\页眉页脚.docx') 第一节=文件.sections[0] print(第一节.gutter.cm) 第一节.gutter=Cm(2) prin ...
分类:
其他好文 时间:
2020-07-12 12:21:17
阅读次数:
52
from docx import Document from docx.shared import Pt from docx.enum.text import WD_ALIGN_PARAGRAPH #导入对齐库 文件=Document(r'E:\word练习\页眉页脚.docx') 第一节=文件.s ...
分类:
其他好文 时间:
2020-07-12 12:19:36
阅读次数:
69
基本设置部分: 1、设置代码的字体类型和大小: Window -> Preferences -> General -> Appearance -> Content Assist -> Colors and Fornts,只需修改 Basic 里面的 Text Font 就可以了 2、设置文本文件及J ...
分类:
系统相关 时间:
2020-07-12 09:15:16
阅读次数:
116
一、项目介绍 1、主要为了在此小型测试项目中用到几乎所有ctk的常用知识: 插件间通信、服务工厂、服务追踪、事件监听、框架封装 2、项目共包含3个插件日志插件:用于模拟将接收的信息存储到日志中【这里只做简单的打印】,并且能够接收信息【主要来自界面插件】 打印插件:根据不同的插件返回提供不同打印服务 ...
分类:
其他好文 时间:
2020-07-11 22:56:34
阅读次数:
75
一、命令行启动一个实例 1、创建网络 neutron net-create --shared --provider:physical_network provider \ 公共的网络,所有项目都能用,provider和配置文件/etc/neutron/plugins/ml2/ml2_conf.ini ...
分类:
其他好文 时间:
2020-07-11 22:49:40
阅读次数:
191