已解决
rannrann
这个作者很懒,什么都没留下…
展开
-
【C++】模板定义位置引发未定义标识符 “E“
代码如下#include <iostream>#include "ArrayQueue.h"#include "LoopQueue.h"using namespace std;template<typename E>void try_ArrayQueue(){ ……}void try_LoopQueue(){ ……}double testQueue(E *queue, int opCount){ //未定义标识符 "E" cloc.原创 2021-11-30 13:33:13 · 1571 阅读 · 0 评论 -
【yum】error: unpacking of archive failed on file
用yum下载mysql-community*时报错看到这篇文章时 ,猜想可能这个包的哈希值不对劲,所以从官方下了一遍包。网站在这里,通过搜索你也可以找到其他包。结果就好了原创 2021-10-20 23:48:51 · 580 阅读 · 0 评论 -
【nginx】使用rc.local开机自启nginx的话不要轻信systemctl status nginx
在rc.local中写入/usr/local/nginx/sbin/nginx可以实现开机自启nginx如果你同时写了nginx.service文件,也同时设置了systemd对nginx的开机自启那么开机后查看nginx状态会让你一头雾水我的nginx没有启动么??查看一下80端口,nginx正在监听,说明nginx正在运行实际上查看rc-local服务的状态就知道nginx已经启动了。Started /etc/rc.d/rc.local Compati...原创 2021-08-28 09:55:08 · 1853 阅读 · 0 评论 -
【nignx报错】启动服务时line1/2/3/4/5多行报错
可能是/usr/local/nginx/sbin/nginx文件出了问题。正常的nginx文件打开是这样的 但如果改了这个可执行文件,就会报错原创 2021-07-30 19:35:28 · 194 阅读 · 0 评论 -
【Leetcode报错】多维数组创建引发的heap-buffer-overflow
创建三维数组在visual studio 2017没有报错,但是在leetcode报错heap-buffer-overflow错误写法 int ***IntervalIndex = (int***)malloc(sizeof(int)*max); for (int i = 0; i < max; i++) { IntervalIndex[i] = (int**)malloc(sizeof(int)*EventAccount[i]); for (int j = 0; j <原创 2021-01-10 15:48:50 · 192 阅读 · 0 评论 -
【Leetcode报错】 error: stray ‘\302’ in program
原因出现该错误的原因,请移步到这里。解决方法1、打开IDE,将报错的文本复制粘贴进去。2、复制IDE中的文本,然后粘贴回leetcode。原创 2021-01-03 16:13:56 · 535 阅读 · 0 评论 -
【C语言报错】C2040间接寻址级别不同
错误写法void BST_add(BST *bst,int e) { bst->root = lrnode_add(bst,bst->root, e);//lrnode_add方法定义在后面}//向以node为根的二分搜索树中插入元素e,递归算法//返回插入新节点后二分搜索树的根lrNode* lrnode_add(BST *bst, lrNode *node, int e) { if (node == NULL) { bst->size++; return..原创 2020-07-25 12:53:55 · 6797 阅读 · 2 评论 -
【C语言报错】C2061发生在结构声明的情况
报错错误写法typedef struct Node { B e; Node *next;}Node;正确写法typedef struct Node Node;struct Node { B e; Node *next;};原创 2020-07-10 16:24:28 · 402 阅读 · 0 评论 -
【python3报错回避】httpClient.request('GET', url)和requests.get(url)针对中文参数的返回
最近再写一个中英互译的网站,用的是金山词霸的api。抄着另一个大佬的博客写了英译中,但是用同样的方式请求中译英的结果时报错,代码如下:def ch_to_en(q, species="json"): myurl = "/api/dictionary.php?w=" + q + "&type=" + species + "&key=54A9DE969E911BC52...原创 2020-01-20 16:58:03 · 703 阅读 · 0 评论