欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++变量命名知识实例讲解

程序员文章站 2022-06-17 20:00:53
1:变量命名 int aitemp[256]; int *pitemp[256]; 2: 函数命名规则 动词+名词; startfacedetection(); 3: 类名的命名规则 class c...

1:变量命名

int aitemp[256];

int *pitemp[256];

2: 函数命名规则

动词+名词;

startfacedetection();

3: 类名的命名规则

class cfacedetection

{ }

cfacedetection ifacedetection;

4:结构体

typedef struct tagfacedetect{

int inum;

char cpath[256];

}facedetectst;

facedetectst stfacedetect;