代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/386607/8735659
java interruptiblelocking.java
package net.jcip.examples;
import java.util.concurrent.locks.*;
/**
* InterruptibleLocking
*
* @author Brian Goetz and Tim Peierls
*/
public class InterruptibleLocking {
private Lock lock =
www.eeworm.com/read/386607/8735662
java improvedlist.java
package net.jcip.examples;
import java.util.*;
import net.jcip.annotations.*;
/**
* ImprovedList
*
* Implementing put-if-absent using composition
*
* @author Brian Goetz and Tim Peierls
*/
@T
www.eeworm.com/read/386607/8735804
java myappthread.java
package net.jcip.examples;
import java.util.concurrent.atomic.*;
import java.util.logging.*;
/**
* MyAppThread
*
* Custom thread base class
*
* @author Brian Goetz and Tim Peierls
*/
publ
www.eeworm.com/read/386607/8735829
java listhelpers.java
package net.jcip.examples;
import java.util.*;
import net.jcip.annotations.*;
/**
* ListHelder
*
* Examples of thread-safe and non-thread-safe implementations of
* put-if-absent helper met
www.eeworm.com/read/386607/8735849
java guiexecutor.java
package net.jcip.examples;
import java.util.*;
import java.util.concurrent.*;
/**
* GuiExecutor
*
* Executor built atop SwingUtilities
*
* @author Brian Goetz and Tim Peierls
*/
public cl
www.eeworm.com/read/386607/8735863
java bettervector.java
package net.jcip.examples;
import java.util.*;
import net.jcip.annotations.*;
/**
* BetterVector
*
* Extending Vector to have a put-if-absent method
*
* @author Brian Goetz and Tim Peierl
www.eeworm.com/read/386607/8735980
java backgroundtask.java
package net.jcip.examples;
import java.util.concurrent.*;
/**
* BackgroundTask
*
* Background task class supporting cancellation, completion notification, and progress notification
*
* @au
www.eeworm.com/read/430651/8736261
java number_phonecard.java
/*
* Created on 2005-10-9
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package chap05;
/**
* @author Adm
www.eeworm.com/read/430649/8736330
java test.java
package chap04;
abstract class Hello {
abstract void print();
Hello() {
print();
}
}
class Te extends Hello {
int i = 5;
boolean a ;
void print() {
System.out.println("Hi.a="
www.eeworm.com/read/386489/8740330
java bomb.java
import javax.microedition.lcdui.Graphics;
public class Bomb {
private static final int PER_S_CYC = 20;
private int posX;
private int posY;
private int mode;
private int remainCyc;