摘要:
new对象一般用法 int *pi = new int; int *pi=new int(1024); string *ps=new string(10,'9'); vector<int> *pv=new vector<int>{0,1,2,3,4,5,6,7,8,9}; // 列表初始化 区别: 阅读全文
摘要:
https://baike.baidu.com/item/CRuntimeClass/1439795?fr=aladdin https://blog.csdn.net/tgdzsjh/article/details/30255733 https://www.cnblogs.com/weiqubo/a 阅读全文
摘要:
getRotationMatrix2D()+warpAffine(); fitLine()拟合曲线:sobel最大X\Y梯度+筛选最大位置+拟合; 阅读全文
摘要:
1.insert; vector<vector<Point>> contour1; vector<vector<Point>> contour2; contour1.insert(contour1.end() ,contour2.begin() ,contour2.end() ); 阅读全文
摘要:
https://blog.csdn.net/thanklife/article/details/70208841 USES_CONVERSION的使用和注意 1. 使用ATL的W2A和A2W宏必须使用USES_CONVERSION2. USES_CONVERSION是用来转换类型的,比如我们很常见的 阅读全文
摘要:
字符串string转换为其它数据类型 int atoi(const char *nptr); string str="123456"; temp=str.c_str(); 1)短整型(int)i = atoi(temp);2)长整型(long)l = atol(temp);3)浮点(double)d 阅读全文
摘要:
// Cast a dynamically allocated string to 'void*'. void *vp = static_cast<void*>(new std::string("it's easy to break stuff like this!")); // Then, in 阅读全文
摘要:
string、char[]、char*、const char*; 输出都一样 printf只能输出c语言中的内置数据,string不是c语言内置数据; cout可以输出string字符串,是因为string中重载了“<<”操作符; printf_s("%s\n", arrc); \\char[]pr 阅读全文
摘要:
在处理LPTSTR或LPCTSTR的时候,应该使用_tcslen来替代strlen函数。否则,在Unicode编码方式下,strlen不能处理wchar_t*的字符串。 阅读全文
摘要:
格式: CString cstr.AppendFormat(_T(" %.4f "), ); 输出: (1) https://blog.csdn.net/overlord_bingo/article/details/60140224 不含中文的情况下: CString s("hello world" 阅读全文