代码调试
文章平均质量分 78
1290939507
这个作者很懒,什么都没留下…
展开
-
代码调试时积累的知识(2)
1.c++中“->”与“.“的区别 “->”是在指针中用的;“.“是在类或者结构体变量中用的。 eg: struct aaa { int a; int b; }; 声明: aaa t; aaa* p; p = &t; t.a = 2; //这里t是变量,所以用(.) t.b = 3; assert(p->a == 2); //这里p是指针,所以用(->) assert(原创 2014-04-02 22:25:53 · 428 阅读 · 0 评论 -
代码调试时积累的一些知识
1.找不到头文件#include 从linux移植到windows中时会出现该问题,需要在网上下载dirent.h,加入到vs的include目录中去。 D:\Program Files\vs\VC\include 说明: (1)DIR是在目录项格式头文件dirent.h中定义的,它表示一个目录流类型。 DIR *opendir(const char *name); o原创 2014-03-13 10:34:33 · 727 阅读 · 1 评论 -
IplImage与Bitmap的相互转换[vc++.net]
1.新建opencvtools.h,在其中加入代码:原创 2014-05-13 18:42:00 · 1314 阅读 · 0 评论 -
vc++.net语言
1.将数字转换为vc++.net中的string类型原创 2014-06-06 08:23:02 · 603 阅读 · 0 评论 -
枚举
1.枚举 enum Color{red,blue,yellow,green}; //定义枚举,red、blue等作为符号常量,对应的是数值0~3 Color color; //声明这种类型的变量 color=blue; //只能用枚举量来赋值这种枚举变量,虽然blue的值是1,但是color=1是不对的 //没有为枚举定义算术运算,即color++,color=blue+gr原创 2014-06-11 17:22:15 · 546 阅读 · 0 评论 -
文件的操作
1.文件的命名与保存原创 2014-08-07 16:46:09 · 364 阅读 · 0 评论