正则时光 - 生活原本沉闷,但跑起来就有风!
正则时光 - 生活原本沉闷,但跑起来就有风!
最新发布吾生也有涯,而知也无涯!第51页
PyCharm Structure窗口中的图标含义 - 正则时光

PyCharm Structure窗口中的图标含义

一、Common 常用 IconDescriptionPython scriptClassMethodFunctionFieldVariablePropertyParameterElement Project structure DirectoryPackageSource rootExcluded rootTemplate roots Visibi...
12月24日
738
将python编译成可执行文件 - 正则时光

将python编译成可执行文件

要将Python程序编译成可执行文件,可以使用PyInstaller工具。Linux程序和windows程序都可以使用此工具。 安装pyinstaller库 pip install pyinstaller 编译程序 pyinstaller --onefile my_progra...
搭建网站时报错:Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP - 正则时光

搭建网站时报错:Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP

问题背景 今天在安装ecshop程序时,报错Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP 问题分析 翻译这个报错的意思如下:弃用...
QT绘图教程之一:使用 QPainter 进行绘图的基本组成部分和流程 - 正则时光

QT绘图教程之一:使用 QPainter 进行绘图的基本组成部分和流程

QPainter 绘图结构图 一、绘图设备 (Paint Device) QWidget(如窗口、控件) QPixmap(图像缓冲区) QPrinter(打印机) QImage(独立于硬件的图像) 其他继承自 QPaintDevice 的类 二、QPainte...
python异常 - 正则时光

python异常

一、异常处理的结构 try: # 可能引发异常的代码块 pass except SomeException as e: # 处理特定异常的代码块 pass except AnotherException as e: # 处理另一种特定异常的代码块 pass except: #...
Redis学习教程七:持久化 - 正则时光

Redis学习教程七:持久化

概述 redis是内存数据库,如果不将内存中的数据库状态保存到磁盘,那么一旦服务器进程退出,服务器中的数据库状态也会消失。所以redis提供了持久化功能,且分为RDB、AOF两种方式 配置文件 redis...
网关设备、网关、默认网关是什么 - 正则时光

网关设备、网关、默认网关是什么

网关设备是什么? 网关(Gateway)又称网间连接器、协议转换器,这个网关指【网关设备】。 有【路由功能】的设备就可以作为网关设备,路由设备有以下分类: 1、三层交换机:具有三层交换功能的...
以太网数据帧在网络中如何发送和接收? - 正则时光

以太网数据帧在网络中如何发送和接收?

本文主要介绍下数据链路层的以太网数据帧的相关内容,主要包括数据帧的报文结构、MAC地址以及数据帧的发送和接收方式。 网络层封装的数据包在以太网物理传输介质上传播之前必须封装头部和尾部信...