代码搜索:bool
找到约 10,000 项符合「bool」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6242374
bool
case two('b','w'): rv = auto_left_margin; break;
case two('a','m'): rv = auto_right_margin; break;
case two('x','b'): rv = beehive_glitch; break;
case two('x','s'): rv = ceol_standout_glitch; brea
www.eeworm.com/read/131315/5931656
in bool.in
stop at 4
run
print b
step
print b
assign b = false
print b
assign b = true
print b
www.eeworm.com/read/292235/8365794
cpp bool.cpp
//布尔表达式的文法
//B--->B or L|L
//L--->L and M | M
//M --->not M | k
//K--->(B) | i | true | false
//i ---> iSi
//S ---> | < | > | = | =
//改为无左递归的文法为:
//B ---> LB1 | L
//B1 --->or L B1
www.eeworm.com/read/288118/8652029
h bool.h
www.eeworm.com/read/385844/8786242
h bool.h
#ifndef __NACHBOOL_H__
#define __NACHBOOL_H__ 1
#define FALSE 0
#define TRUE 1
#endif
www.eeworm.com/read/182195/9212415
h bool.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/181916/9227510
cpp bool.cpp
// This contains all the C++ code that is needed by the sip module.
//
// Copyright (c) 2006
// Riverbank Computing Limited
//
// This file is part of SIP.
//
// Thi
www.eeworm.com/read/378420/9231561
h bool.h
www.eeworm.com/read/181788/9236963
h bool.h
/* bool.h - Boolean definitions */
/* Copyright 1998-2010 Wind River Systems, Inc. */
/*
* modification history
* --------------------
* 01a,25mar98,pai written
*
*/
#ifndef
www.eeworm.com/read/377523/9272468
java bool.java
//: c03:Bool.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Relational and logical operators.
import java.util.*;
publi