自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(113)
  • 收藏
  • 关注

原创 arch下PKGBUILD包的安装

title date tags categories description arch下PKGBUILD包的安装 2019-10-04 10:04:10 -0700 PKGBUILD linux arch下另一种安装软件的方式 cd到...

2020-04-29 16:42:05 5695

原创 C语言断言库assert-h

title date tags categories description C语言断言库assert.h 2020-04-02 03:42:57 -0700 断言库 C语言 assert.h是一个用于辅助调试程序的小型库 ...

2020-04-29 16:41:40 2014

原创 简单工厂模式

title date tags categories description 简单工厂模式 2020-03-06 05:04:12 -0800 工厂模式 设计模式 简单工厂模式是属于创建型模式,又叫做静态工厂方法(Static Fact...

2020-04-29 16:41:25 232

原创 python的文件操作

title date tags categories description python的文件操作 2019-09-09 12:56:50 -0700 python文件操作 python 在计算机中操作文件分为三步骤:打开,读写,关闭 ...

2020-04-29 16:41:10 252

原创 python的模块和包

title date tags categories python的模块和包 2019-09-06 09:36:05 -0700 python进阶 python 模块每一个以py结尾的python源代码文件都是一个模块模块导入import...

2020-04-29 16:41:10 244

原创 linux进程间通信

title date tags categories description linux进程间通信 2019-11-20 11:07:27 -0800 进程 C/C++ 有时需要通过进程间通信来完成某项功能或者交换数据 ...

2020-04-29 16:40:55 154

原创 QT中QString和char-互转

title date tags categories description QT中QString和char*互转 2019-12-02 04:41:47 -0800 QString QT 记录一下QT中QT中QString和char*...

2020-04-29 16:40:54 203

原创 unix下的重定向

title date tags categories unix下的重定向 2020-03-27 16:48:23 -0700 重定向 linux 理解输出重定向:一般情况下,我们在终端下执行命令,或者执行程序,如果有输出信息,则会显示在终端上,...

2020-04-29 16:40:43 615

原创 html的基本标签

title date tags categories description html基本标签 2019-10-02 09:52:40 -0700 html基础 html 标题,段落,图片,链接,列表 html基本结构<!DOC...

2020-04-29 16:40:30 222

原创 css关系选择器

title date tags categories description css关系选择器和属性选择器 2019-10-11 13:28:34 -0700 css关系选择器 css css关系选择器 ...

2020-04-29 16:40:29 188

原创 distinct和limit关键字

title date tags categories description distinct和limit关键字 2020-04-15 03:33:18 -0700 distinct limit 数据库 distinct关键字此...

2020-04-29 16:40:28 1269

原创 QT中信号和槽

title date tags categories description QT中信号和槽 2019-12-02 02:50:52 -0800 信号与槽 QT 信号槽是 Qt 框架引以为豪的机制之一 ...

2020-04-29 16:40:05 254

原创 C语言多线程

title date tags categories C语言多线程 2019-11-21 14:00:57 -0800 线程 C/C++ 修改自码农有道的博客线程的概念和多进程相比,多线程是一种比较节省资源的多任务操作方式。启动一个新的进程必...

2020-04-29 16:39:54 586

原创 正则表达式

title date tags categories description 正则表达式 2019-09-26 04:45:07 -0700 正则表达式 正则表达式 用于快速匹配字符 python中使用正则表达式# 导入re模块im...

2020-04-29 16:39:28 214

原创 python-面向对象

title date tags categories python--面向对象_封装 2019-09-04 13:19:25 -0700 python面向对象 python 封装:根据职责,将方法 和属性 封装到一个类中dir()函数...

2020-04-29 16:38:58 124

原创 polybar主题配置

title date tags categories description polybar主题配置 2019-10-04 03:40:19 -0700 linux polybar linux polybar是一款强大的状态栏应用 ...

2020-04-29 16:38:44 4999

原创 python中的异常

title date tags categories python中的异常 2019-09-06 08:10:12 -0700 python面向对象 python 程序开发时很难将所有特殊情况都处理的面面俱到,通过异常捕获可以针对突发事件集中处理...

2020-04-29 16:38:42 166

原创 python函数嵌套

title date tags categories description python函数嵌套 2019-09-17 06:29:10 -0700 python基础 python 在函数内部定义的函数,也叫内部函数 使用封装——...

2020-04-29 16:38:41 162

原创 html5新增标签

title date tags categories description html5新增标签 2019-10-10 09:12:26 -0700 html5 html html5新增标签 详细的html教程 w3school常见的...

2020-04-29 16:38:20 144

原创 mysql数据过滤

title date tags categories description mysql数据过滤 2020-04-05 07:30:59 -0700 where子句 数据库 使用where子句进行数据过滤 ...

2020-04-29 16:38:18 198

原创 mysql分组数据

title date tags categories description mysql分组数据 2020-04-23 02:49:02 -0700 mysql 数据库 分组是在`SELECT`语句的`ORDER BY`子句中建立的 ...

2020-04-29 16:38:03 80

原创 html表格表单

title date tags categories description html表格表单 2019-10-03 03:33:10 -0700 html基础 html 表单表格 表格<caption>标签:表格标题...

2020-04-29 16:37:53 110

原创 tmux简单使用

title date tags categories description tmux简单使用 2020-01-09 06:56:22 -0800 tmux linux 用于建立多个终端会话窗口 ...

2020-04-29 16:37:51 101

原创 git快速入门

title date tags categories git快速入门 2019-08-29 12:32:23 -0700 git 计算机 git git init将当前文件下变为git仓库git status查看git仓...

2020-04-29 16:37:29 83

原创 tcp网络编程

title date tags categories description tcp网络编程 2019-09-16 14:12:17 -0700 python网络编程 python tcp可以类比于打电话的方式,在通讯之前需要先建立连接,较udp更为安全...

2020-04-29 16:37:29 116

原创 css伪类标签

title date tags categories description css伪类标签 2019-10-12 14:35:00 -0700 css基础 css css的伪类标签 伪类标签含...

2020-04-29 16:37:29 516

原创 sql语言概述

title date tags categories description sql语言概述 2020-02-20 07:21:32 -0800 sql 数据库 sql语言用于对数据库的操作 查询语句...

2020-04-29 16:37:28 129

原创 ftp服务搭建

title date tags categories description ftp服务搭建 2020-01-08 04:35:09 -0800 ftp linux 参考文章https://blog.csdn.net/langyue91...

2020-04-29 16:37:27 107

原创 udp网络编程

title date tags categories description udp网络编程 2019-09-15 13:33:13 -0700 udp python网络编程 python udp可以类比写信的模式,在通信之前不需要建立连接 ...

2020-04-29 16:37:15 147

原创 ftp相关命令

title date tags categories description ftp相关命令 2020-01-08 03:06:30 -0800 ftp C/C++ ftp是用于传输文件的协议 登录#...

2020-04-29 16:37:14 161

原创 C-面向对象

title date tags categories description C++面向对象 2019-11-09 03:19:47 -0800 面向对象 C/C++ C++是一门面向对象的语言 转自码...

2020-04-29 16:37:03 223

原创 C-类的详解

title date tags categories description C++类的详解 2019-11-09 04:40:59 -0800 面向对象 C/C++ 面向对象既是用类的思想封装属性,用对象的方式封装数据 ...

2020-04-29 16:37:02 478

原创 C-类的多态

title date tags categories description C++类的多态 2019-11-13 10:06:49 -0800 多态 C/C++ 当调用成员函数时,会根据调用函数的对象的类型来执行不同的函数 ...

2020-04-29 16:37:01 219

原创 C-遍历数组

title date tags categories description C++遍历数组 2020-04-28 03:40:07 -0700

2020-04-29 16:37:01 249

原创 C-函数重载

title date tags categories description C++函数重载 2019-11-08 15:45:04 -0800 重载 C/C++ 即同名而功能类似的函数 重载概念重载...

2020-04-29 16:37:00 162

原创 C-类的继承

title date tags categories description C++类的继承 2019-11-12 13:50:29 -0800 继承 C/C++ 通过继承父类来缩减重复的代码 继承继...

2020-04-29 16:36:50 400

原创 C-处理类型

title date tags categories description C++处理类型 2020-04-27 06:43:54 -0700 类型别名 auto关键字 decltype关键字 C/C++ 随着程序越来越复杂,...

2020-04-29 16:36:46 210

原创 Oracle的虚表dual

title date tags categories description Oracle的虚表dual及伪列 2020-02-26 00:53:22 -0800 oracle dual 数据库 dual是一个虚拟表,用来构成sel...

2020-04-29 16:36:33 388

原创 终端指令

title date tags categories 终端指令 2019-08-29 10:11:16 -0700 linux 终端 linux some tipsTab can auto compelete commandCtrl+c...

2020-04-29 16:35:50 1335

原创 单例模式

title date tags categories 单例模式 2019-09-05 11:20:19 -0700 python面向对象 python 设计模式是为了可重用代码,让代码易于理解,保证可靠性目的让类创建的对象,在系统中只有惟...

2020-04-29 16:35:45 100

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除