C语言之stdbool头文件中的bool类型

目录

  • 头文件
  • bool类型使用详解

头文件

/*-------------------------------------------------------------------------
   stdbool.h - ANSI functions forward declarations

   Copyright (C) 2004, Maarten Brock, sourceforge.brock@dse.nl

   This library is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this library; see the file COPYING. If not, write to the
   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
   MA 02110-1301, USA.

   As a special exception, if you link this library with other files,
   some of which are compiled with SDCC, to produce an executable,
   this library does not by itself cause the resulting executable to
   be covered by the GNU General Public License. This exception does
   not however invalidate any other reasons why the executable file
   might be covered by the GNU General Public License.
-------------------------------------------------------------------------*/

#ifndef __SDC51_STDBOOL_H
#define __SDC51_STDBOOL_H 1

/* Define true and false of type _Bool in a way compatible with the preprocessor (see N 2229 for details). */
#define true ((_Bool)+1)
#define false ((_Bool)+0)

#define bool _Bool
#define __bool_true_false_are_defined 1

#endif


bool类型使用详解

bool类型通常使用取反操作,类似于开关的作用。bit类型也是这样的用法,例如a =~a在嵌入式开发中常常用到,但是有的单片机不支持bit类型,资源很少,例如九齐的8位机不能用bit类型,只能用bool类型,上面的语句只适用于bit类型,而bool类型必须使用下面的写法TIM4_flag = (~TIM4_flag) & 0x01;

本质原因是bit类型占1位,而bool类型占8位。8位取反后还是为真,只有最低位为0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值