Loading

上一页 1 ··· 8 9 10 11 12
摘要: Nginx多端口转发文件配置 服务器使用非80端口访问需要加端口号还是很难受的,使用域名解析来绑定也比较不划算,例如阿里云免费版的匿名转发url服务只有两个,如果使用Nginx进行转发,还是很爽的。 只需要将所有的二级域名解析到服务器的IP(阿里云域名解析到IP是没多大限制的),用Nginx进行识别 阅读全文
posted @ 2020-06-24 20:02 WindSnowLi 阅读(55) 评论(0) 推荐(0) 编辑
摘要: C++默认参数 经过测试,默认参数在声明中给出,在实现中不用给出,否则会报“default argument given for parameter 2 of”错误。并且在MinGW7.3.0测试,在实现中给出,声明中不给出会在调用时报错;在声明中给出,实现中不给出的方式则没有发现问题。 另外默认参 阅读全文
posted @ 2020-06-24 19:11 WindSnowLi 阅读(86) 评论(0) 推荐(0) 编辑
摘要: C/C++自写的字符串操作函数 //连接字符串 void Strcat(char *before, char *after); //复制字符串 void Strcpy(char *newstr, const char *oldstr); //获取字符串长度 size_t Getlenth(const 阅读全文
posted @ 2020-06-17 19:04 WindSnowLi 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 没有#include <graphics.h> 如何解决 这是一个C语言图形库的其中一个头文件,VC++有相关的安装库的程序。可以在EasyX官网下载相关版本的软件进行安装 下载地址https://easyx.cn/downloads/ [原文](https://www.blog.hiyj.cn/a 阅读全文
posted @ 2020-06-15 12:21 WindSnowLi 阅读(43) 评论(0) 推荐(0) 编辑
摘要: C语言图书馆里系统 去掉了相关指针的应用 头文件 #ifndef FUNCTION_H_ #define FUNCTION_H_ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> typed 阅读全文
posted @ 2020-06-15 10:08 WindSnowLi 阅读(18) 评论(0) 推荐(0) 编辑
摘要: C/C++字符串或数字数组简单排序 #include <stdio.h> #include <algorithm> #include <iostream> using namespace std; int main() { int a[10] = { 8,9,6,9,8,6,3,4,7,8 }; c 阅读全文
posted @ 2020-06-10 11:38 WindSnowLi 阅读(73) 评论(0) 推荐(0) 编辑
摘要: C++二维数组声明与初始化的示例 #include <iostream> #include <string> using namespace std; int main() { int **a = new int *[10]; char **c = new char *[10]; string *s 阅读全文
posted @ 2020-06-08 19:52 WindSnowLi 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 微软的winget包管理器 下载链接 https://download.csdn.net/download/qq_44575789/12500933 阅读全文
posted @ 2020-06-05 14:59 WindSnowLi 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Qt自启动信息写入注册表 /* *┌────────────────────────────────────────────────┐ *│ 描 述:Qt程序自启动设置 *│ 作 者:windSnowLi *│ 版 本:0.0.1 *│ 创建时间:2020/05/31 *└───────────── 阅读全文
posted @ 2020-06-01 14:54 WindSnowLi 阅读(27) 评论(0) 推荐(0) 编辑
摘要: C++基于STL的ini文件解析类 GitHub链接 /* * @Description: 用于读取ini配置文件 * @version:0.0.3 preview * @Author: windSnowLi * @LastEditors: windSnowLi * @LastEditTime:20 阅读全文
posted @ 2020-05-08 15:40 WindSnowLi 阅读(13) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12