#define _MYDEFINEFILE_H
的用法是?
_MYDEFINEFILE_H
可以在那里找到?
----------------解决方案--------------------------------------------------------
我知道#ifndef _MYDEFINEFILE_H
#define _MYDEFINEFILE_H
的用法:编译条件
但是_MYDEFINEFILE_H
不懂
----------------解决方案--------------------------------------------------------
_MYDEFINEFILE_H是随便起的名字,你高兴用什么名字就用什么名字,只要符合变量名规范
----------------解决方案--------------------------------------------------------
谢谢了!
----------------解决方案--------------------------------------------------------
以下是引用雨中飞燕在2007-10-11 10:04:14的发言:
#define YES 1
#define NO 0
typedef int elemtype;
typedef struct node
{
elemtype data;
struct node *next;
struct node *prior;
}*dlink;
改:
#ifndef _MYDEFINEFILE_H
#define _MYDEFINEFILE_H
#define YES 1
#define NO 0
typedef int elemtype;
typedef struct node
{
elemtype data;
struct node *next;
struct node *prior;
}*dlink;
#endif
顶!
----------------解决方案--------------------------------------------------------