【遇到的实际编程问题】
MISAYAONE
拒绝一切形式的代考,替考行为!!!本人所写题库均搜集于互联网。
展开
-
typeid().name() 返回 Ss ?
Ssis the mangled name forstd::basic_string<char, std::char_traits<char>, std::allocator<char>>其实就是个 std::string ,只不过名字太长,在内部被简化了。原创 2019-10-30 19:17:02 · 1227 阅读 · 0 评论 -
Mysql Error 2002: Can't connect to local MySQL server through socket
首先查看一下mysql是否启动,ps -ef | grep mysqld如果没有,则启动mysql:sh ~/ 你的mysql 安装目录/bin/mysqld_safe --user=mysql &如果有,则关闭后重新启动:依次kill掉 ~/你的mysql 安装目录/bin/mysqld_safe 和 ~/ 你的mysql 安装目录/bin/mysqld 的进程创建roo...原创 2019-10-29 19:23:14 · 451 阅读 · 0 评论 -
解决多进程中APScheduler重复运行的问题
问题在一个python web应用中需要定时执行一些任务,所以用了APScheduler这个库。又因为是用flask这个web框架,所以用了flask-apscheduler这个插件(本质上与直接用APScheduler一样,这里不作区分)。在开发中直接测试运行是没有问题的,但是用gunicorn部署以后发生了重复运行的问题:每个任务在时间到的时刻会同时执行好几遍。注意了一下重复的数...原创 2019-10-22 16:06:39 · 9943 阅读 · 7 评论 -
AssertionError: View function mapping is overwriting an existing endpoint function
问题:给两个函数添加两个装饰器@app.route("/path1")@exception_handlerdef func1(): pass@app.route("/path2")@exception_handlerdef func2(): pass这样就会造成函数名的重定义。解决:改一下包装的函数名即可:wrapper.__name__ = fun...原创 2019-10-22 16:01:48 · 1038 阅读 · 0 评论 -
-bash: !": event not found
在shell脚本中,这个符号需要加转义字符,加上“\”反转意符号即可解决。"cdhxdashjb!""cdhxdashjb\!"即可原创 2019-10-17 19:50:27 · 253 阅读 · 0 评论 -
switch Error: Jump to case label
switch(foo) { case 1: int i = 42; // i exists all the way to the end of the switch dostuff(i); break; case 2: dostuff(i*2); // i is *also* in scope here, but is not initialized!}...原创 2019-10-15 15:26:47 · 315 阅读 · 0 评论 -
error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
c:\evan\workspace\1\1\netwowkippack.h(50) : error C2146: 语法错误 : 缺少“;”(在标识符“nSourPort”的前面)c:\evan\workspace\1\1\netwowkippack.h(50) : error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 intc:\evan\workspac...原创 2019-09-07 17:35:48 · 15684 阅读 · 0 评论 -
visual studio2010 C++错误 ""表达式必须包含整数或枚举类型""_
一般这种问题都是一个类型函数中的参数是某些特定类型的,而你用了其他类型,当其他类型强制转换都匹配时,则会报错一句话说就是变量的类型不对典型的例子有:sqrt()函数:double sqrt (double x);float sqrt (float x);long double sqrt (long double x);a^b;//并不是a的b次方,这里是亦或的意思,所以a和b...原创 2018-10-07 16:54:33 · 71497 阅读 · 1 评论 -
error C2039: “to_string”: 不是“std”的成员
to_string这个函数只有C++11才有啊,这个报错应该是在旧版本C++使用该函数的原因解决方法:#include <string>#include <sstream>//当然是自己写一个啦~template <typename T>std::string to_string(T value){ std::ostringstre...原创 2019-05-17 21:20:33 · 6668 阅读 · 1 评论 -
storage class specified for parameter XXX
检查类与函数的分号啊啊啊啊啊啊!!!!原创 2019-08-25 11:08:10 · 1066 阅读 · 0 评论 -
error:正被停用的激活上下文对于当前执行线程来说不是活动的。
定义了一个对象指针,没有用new分配内存,而直接对其成员函数赋值,内存访问越界。用之前记得初始化!!!!!!!!!!原创 2018-01-23 09:53:58 · 1178 阅读 · 0 评论 -
traincascade's error (Required leaf false alarm rate achieved. Branch training terminated.)
问题:traincascade's error (Required leaf false alarm rate achieved. Branch training terminated.)解析:虚警率已经达标 不再继续训练 ,这里不能说是一个错误,只能说制作出来的xml文件可能较差解决办法:先测试一下生成的cascade.xml,如果效果没有达到你的预期,有以下几个解决方案:1原创 2017-09-27 09:31:28 · 6141 阅读 · 6 评论 -
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)
Python中的编码问题真的很令人头疼啊!~~~import sysreload(sys)sys.setdefaultencoding('utf-8')加入这几行代码就可以解决了~~原创 2016-11-12 15:28:45 · 695 阅读 · 0 评论 -
IOError: [Errno 22] invalid mode ('w') or filename;
这种错误的出现是在使用built-in函数file()或者open()的时候。或者是因为文件的打开模式不对,或者是文件名有问题。前者的话只需要注意文件是否可读或者可写就可以了。后者则是与文件路径相关的问题,需要在文件名前加r或者R转义,如:file(r"e:\Test.txt",'r').或者将反斜杠\变成两个,如file("e:\\Test.txt",'r').原创 2016-11-12 21:07:38 · 4111 阅读 · 0 评论 -
urllib2.URLError<urlopen error no host given>
首先就是最简单的问题:是不是网址敲错了,反斜杠还是斜杠,冒号有没有少,都检查一遍@@其次就是你是否是自己要产生url,仔细的检查一下产生过程中是不是有哪些符号多了或者少了或者不对。一定要细心!!!!一定要细心!!!!一定要细心!!!!原创 2016-11-12 21:13:59 · 10528 阅读 · 1 评论 -
error LNK2005:已经在 XXX.obj 中定义/fatal error LNK1120: 1 个无法解析的外部命令
>main.obj : error LNK2005: "void __cdecl Creat_graph(struct graph *)" (?Creat_graph@@YAXPAUgraph@@@Z) 已经在 graph.obj 中定义1>main.obj : error LNK2005: "int * visit" (?visit@@3PAHA) 已经在 graph.obj 中定义1>原创 2017-05-28 10:07:24 · 3907 阅读 · 0 评论 -
error LNK2019: 无法解析的外部符号 / fatal error LNK1120: 2 个无法解析的外部命令
1>main.obj : error LNK2019: 无法解析的外部符号 "bool __cdecl PopStack(struct Stack)" (?PopStack@@YA_NUStack@@@Z),该符号在函数 _main 中被引用1>main.obj : error LNK2019: 无法解析的外部符号 "bool __cdecl PushStack(struct Stack,in原创 2017-05-28 10:07:00 · 3110 阅读 · 1 评论 -
Array dimensions must match for binary array op.
主要原因是:读进来的图为rgb的缘故,要转为灰度matlab自带转换函数rgb2grayI1=imread('E:\photo11\jcw1.jpg'); I2=imread('E:\photo11\jcw2.jpg');imshow(I2); I1=rgb2gray(I1);I2=rgb2gray(I2);原创 2017-05-07 10:08:08 · 4111 阅读 · 0 评论 -
??? Error using ==> nlinfit at 127 MODELFUN should return a vector of fitted values the same length
??? Error using ==> nlinfit at 127 MODELFUN should return a vector of fitted values the same length 这个问题应该是利用matlab进行非线性拟合时经常会遇到的问题它的中文意思应该是:“模板函数应该返回一个与y等长的向量”看一下程序:x=[3.2,3.6,3.8,4,4.2,4.5原创 2017-05-07 10:07:24 · 1962 阅读 · 0 评论 -
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法
Python脚本执行总报错"AttributeError: 'module' object has no attribute'xxx'"。问题定位:查看import库的源文件,发现源文件存在且没有错误,同时存在源文件的.pyc文件问题解决方法:1. 命名py脚本时,不要与python预留字,模块名等相同(这一点非常重要哦!看看你有没有一个文件的名字有问题的)2.原创 2016-11-21 12:58:29 · 6107 阅读 · 0 评论 -
cl : 命令行 error D8003: 缺少源文件名
源文件都找不到了呀~检查项目属性中的 VC++目录—包含目录C++常规—附加包含目录链接器—常规—附加库目录链接器—常规—附加依赖项这四个部分中的路径是否正确,可能会多个反斜杠,错误就是来的这么突然~原创 2017-06-14 10:18:34 · 6973 阅读 · 0 评论 -
"const char *" 类型的实参与 "LPCTSTR" 类型的形参不兼容
LPCTSTR就是一个32-bit指针指向一个常字符串,每字符可能占1字节或2字节,取决于Unicode是否定义LPCTSTR是一个windows API数据类型。根据windows API数据类型的命名规律:1)L——long 指针,是为了兼容Window3.1等16位扣件系统遗留下来的,在Win32中以及其他的32的扣件系统中,long 指针和near 指针及far 修饰符都是原创 2017-09-16 09:47:30 · 2279 阅读 · 0 评论 -
error LNK2001: 无法解析的外部符号 "private: static class Earth * Earth::earth_Instance"
仔细检查一下你的类中的 static 变量是否已经定义,且要放在类的外部定义!!!其实就是一个静态变量未初始化的问题~~原创 2017-09-26 15:43:43 · 7188 阅读 · 1 评论 -
Traincascade Error: Bad argument (Can not get new positive sample. Themost possible reason is insuff
问题:Traincascade Error: Bad argument (Can not get new positive sample. Themost possible reason is insufficient count of samples in given vec-file.)解析:设置的numPos过大,由于训练时POS_count会随你设置的numPos增大,每一级都原创 2017-09-27 09:29:57 · 3719 阅读 · 4 评论 -
TypeError: ‘NoneType’ object is not iterable
TypeError: 'NoneType' object is not iterable 这个错误提示一般发生在将None赋给多个值时。def myprocess(): a == b if a != b: return True, value;flag, v原创 2016-11-12 20:55:11 · 37832 阅读 · 2 评论