C语言:要输出一个BOOL型变量(不转换直接输出)该用什么符号?
bool型的变量C中可以是0/1也可以是FALSE/TRUE那么如果我用了一个BOOL型的变量要输出这个变量在引号里要怎么表示呢?...
bool型的变量C中可以是0/1也可以是FALSE/TRUE 那么如果我用了一个BOOL型的变量 要输出这个变量 在引号里要怎么表示呢?
展开
展开全部
BOOL是微软定义的typedef int BOOL,可见BOOL只是int(4字节int)的别名,并非布尔类型;它的定义在头文件windows.h中。所以在C语言中可以用%d直接控制输出,在C++中可用cout <<直接输出。以下代码可以佐证:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
#include "windows.h"//BOOL定义在这个头文件中
using namespace std;
int main(int argc,char *argv[]){
BOOL x=1234567890;
cout << "Use the 'cout <<': x = " << x << endl;//使用C++输出流
printf("Use the 'printf': x = %d\n",x);//使用库函数printf
return 0;
}
输出结果为:
2013-06-06
展开全部
使用"%d“就行,在对bool类型进行赋值时,不管你给给赋100、1、0、true还是false,它所遵循的原则就是非0即真,也就是你给它的值不是0,它就将这个bool变量设为1。所以bool型变量的输出值只有两个0或1。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-06
展开全部
BOOL和FALSE/TRUE是宏定义(MS windows.h),类型就是int
所以%d输出就行
c里的bool也是一种整数类型,只要类型兼容,用%d来格式化都是可以的
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#else /* __cplusplus */
/* Supporting <stdbool.h> in C++ is a GCC extension. */
#define _Bool bool
#define bool bool
#define false false
#define true true
#endif /* __cplusplus */
/* Signal that all the definitions are present. */
#define __bool_true_false_are_defined 1
#endif /* stdbool.h */
所以%d输出就行
c里的bool也是一种整数类型,只要类型兼容,用%d来格式化都是可以的
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#else /* __cplusplus */
/* Supporting <stdbool.h> in C++ is a GCC extension. */
#define _Bool bool
#define bool bool
#define false false
#define true true
#endif /* __cplusplus */
/* Signal that all the definitions are present. */
#define __bool_true_false_are_defined 1
#endif /* stdbool.h */
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-06
展开全部
楼主你好:在C语言里没有BOOL常量所以根本无法写,在C++里就有了,不过C++里只要不是0都为真这样代码安全性不够而在C#语言中bool 只能声明为true 或者false.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询