代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/100399/15874727
h boolean.h
//$$ boolean.h bool class
// This is for compilers that do not have bool automatically defined
#ifndef bool_LIB
#define bool_LIB 0
#ifdef use_namespace
namespace RBD_COMMON {
www.eeworm.com/read/100398/15874751
h boolean.h
//$$ boolean.h bool class
// This is for compilers that do not have bool automatically defined
#ifndef bool_LIB
#define bool_LIB 0
#ifdef use_namespace
namespace RBD_COMMON {
www.eeworm.com/read/100397/15874785
h boolean.h
//$$ boolean.h bool class
// This is for compilers that don't have bool automatically defined
#ifndef bool_LIB
#define bool_LIB 0
#ifdef use_namespace
namespace RBD_COMMON {
#
www.eeworm.com/read/100394/15874893
h boolean.h
//$$ boolean.h bool class
// This is for compilers that do not have bool automatically defined
#ifndef bool_LIB
#define bool_LIB 0
#ifdef use_namespace
namespace RBD_COMMON {
www.eeworm.com/read/100333/15876988
st boolean.st
Class Boolean
[
& aBoolean
^ self and: [aBoolean]
| | aBoolean
^ self or: [aBoolean]
| and: aBlock
^ self and: [aBlock value]
| or: aBlock
www.eeworm.com/read/100268/15879135
h boolean.h
/* boolean.h - BOOLEAN definitions and MACROS
/*
/* Copyright (c) 1995-1999 Applied Information Technologies, Inc.
/* All Rights Reserved.
/*
/* Distributed uder the GNU General Public License which
www.eeworm.com/read/292139/8375976
class leap_boolean.class
www.eeworm.com/read/292139/8375978
java leap_boolean.java
//【例2.4】 判断一个年份是否为闰年。
public class Leap_boolean
{
public static void main(String args[])
{
int year=2008;
boolean leap=false;
leap = (year%400==0) || (year%1
www.eeworm.com/read/390596/8457706
class leap_boolean.class
www.eeworm.com/read/390596/8457709
java leap_boolean.java
public class Leap_boolean
{
public static void main(String args[])
{
int year=2002;
boolean leap=false;
leap = (year%400==0)| (year%100!=0) & (year%4==0);