代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/316014/13532530
java smdlmodification.java
// FrontEnd Plus for JAD
// DeCompiled : smDLModification.class
package sms;
// Referenced classes of package sms:
// modDL, smDL, Member, Address
class smDLModification extend
www.eeworm.com/read/315999/13532733
h c1.h
// c1.h (文件名)
#include // 字符串函数头文件
#include // 字符函数头文件
#include // malloc()等
#include // INT_MAX等
#include // 标准输入输出头文件,包括EOF(=^Z或F6),NULL等
www.eeworm.com/read/315969/13533557
pas uglobal.pas
unit uglobal;
interface
var
userid, userpwd: string[32];
sysadmin: boolean = false;
datestr, edatestr: string;
systopic, bgstr: string;
implementation
end.
www.eeworm.com/read/315952/13533958
java sprite.java
/*
* Sprite.java
*
* Copyright 2001 SkyArts. All Rights Reserved.
*/
import javax.microedition.lcdui.*;
/**
* Sprite类(显示贴图零件)
*
* @author Hideki Yonekawa
* @version 1.0
*/
abst
www.eeworm.com/read/315789/13536568
txt chap6-6.txt
// 程序6-6
public class TestValueOf{
public static void main(String args[ ]) {
char a[ ]={'A','B','C','D','E','F'};
int i=123456;
float f=3.14159f;
boolean b=tr
www.eeworm.com/read/315789/13536616
txt chap2-11.txt
// 程序2-11
public class shortCut { // 测试逻辑表达式短路问题
static boolean testOne(int x){
System.out.println(x+" < "+1+" " + (x
www.eeworm.com/read/315735/13537293
java dndjtree.java
import java.awt.*;
import java.awt.datatransfer.*;
import java.awt.dnd.*;
import javax.swing.*;
import javax.swing.tree.*;
import java.io.IOException;
import java.util.*;
import java.awt.image.*;
pub
www.eeworm.com/read/315735/13537460
java debugfile.java
import java.io.*;
import java.net.*;
public class DebugFile extends File {
public DebugFile(String name) {
super(name);
}
public boolean canRead() {
p("can read
www.eeworm.com/read/315177/13549211
h protocol.h
/*
Copyright 2006-2008, V.
For contact information, see http://winaoe.org/
This file is part of WinAoE.
WinAoE is free software: you can redistribute it and/or modify
it under the t
www.eeworm.com/read/315078/13552761
cpp compfile.cpp
///////首先让用户输入两个文件名及其路径(二文件均为text文件///////
///////而后通过使用类成员函数getline逐行读入这两个指定文件的/////
///////内容并进行比较。若发现有不同,则在屏幕上显示出相异二行////
////的行号及其内容,并暂停下来询问用户是否需要继续比较后继行//////
//////直到用户回答不需要继续进行比较,或者已经比到了二文件 ...