
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
1.格式化代码Ctrl+K,Ctrl+D 当前文档所有代码格式化选中代码,Ctrl+K,Ctrl+F 选中代码格式化
一:vsftpd安装sudo apt-get install vsftpd二:vsftpd配置man vsftpd 查看vsftpdman vsftpd.conf 查看vsftpd.conf配置说明匿名配置:# Allow anonymous FTP? (Disabled by default).anonymous_enable=YES## Uncomment this to allow loca
ubuntu ntp serverntp server 安装时间同步命令the NTP socket is in use, exitingno server suitable for synchrnization foundntp server 安装安装sudo apt-get install ntp启动服务sudo systemctl start ntp.service查看服务状态sudo sy
一:vsftpd安装sudo apt-get install vsftpd二:vsftpd配置man vsftpd 查看vsftpdman vsftpd.conf 查看vsftpd.conf配置说明匿名配置:# Allow anonymous FTP? (Disabled by default).anonymous_enable=YES## Uncomment this to allow loca
一:序列化二:反序列化
vscode 编码格式

1. 什么是单例模式单例模式(Singleton Pattern,也称为单件模式),使用最广泛的设计模式之一。其意图是保证一个类仅有一个实例,并提供一个访问它的全局访问点,该实例被所有程序模块共享。定义一个单例类:私有化它的构造函数,以防止外界创建单例类的对象;使用类的私有静态指针变量指向类的唯一实例;使用一个公有的静态方法获取该实例。2. 懒汉版(Lazy Singleton)教学版,即懒汉版(
1.ifstream头文件:#include <iostream>#include <fstream>#include <cassert>#include <string>逐行读入文件:void readTxt(string file){ifstream infile;infile.open(file.data());//将文件流对象与文件连接起来a
1. 什么是单例模式单例模式(Singleton Pattern,也称为单件模式),使用最广泛的设计模式之一。其意图是保证一个类仅有一个实例,并提供一个访问它的全局访问点,该实例被所有程序模块共享。定义一个单例类:私有化它的构造函数,以防止外界创建单例类的对象;使用类的私有静态指针变量指向类的唯一实例;使用一个公有的静态方法获取该实例。2. 懒汉版(Lazy Singleton)教学版,即懒汉版(
一:源码下载https://gitee.com/mirrors/open62541.git二:编译sudo apt-get install git build-essential gcc pkg-config cmake python# enable additional featuressudo apt-get install cmake-curses-gui # for the ccmake







