代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/169058/9882292
java cleanup.java
//: exceptions/Cleanup.java
// Guaranteeing proper cleanup of a resource.
public class Cleanup {
public static void main(String[] args) {
try {
InputFile in = new InputFile("Cleanup
www.eeworm.com/read/169058/9882302
java rethrowing.java
//: exceptions/Rethrowing.java
// Demonstrating fillInStackTrace()
public class Rethrowing {
public static void f() throws Exception {
System.out.println("originating the exception in f()"
www.eeworm.com/read/169058/9882315
java human.java
//: exceptions/Human.java
// Catching exception hierarchies.
class Annoyance extends Exception {}
class Sneeze extends Annoyance {}
public class Human {
public static void main(String[] arg
www.eeworm.com/read/169058/9882371
java collectiondatageneration.java
//: containers/CollectionDataGeneration.java
// Using the Generators defined in the Arrays chapter.
import java.util.*;
import net.mindview.util.*;
public class CollectionDataGeneration {
pub
www.eeworm.com/read/169058/9882387
java slowmap.java
//: containers/SlowMap.java
// A Map implemented with ArrayLists.
import java.util.*;
import net.mindview.util.*;
public class SlowMap extends AbstractMap {
private List keys = n
www.eeworm.com/read/169058/9882407
java references.java
//: containers/References.java
// Demonstrates Reference objects
import java.lang.ref.*;
import java.util.*;
class VeryBig {
private static final int SIZE = 10000;
private long[] la = new
www.eeworm.com/read/169058/9882416
java stringhashcode.java
//: containers/StringHashCode.java
public class StringHashCode {
public static void main(String[] args) {
String[] hellos = "Hello Hello".split(" ");
System.out.println(hellos[0].hashC
www.eeworm.com/read/169058/9882480
java unsupported.java
//: containers/Unsupported.java
// Unsupported operations in Java containers.
import java.util.*;
public class Unsupported {
static void test(String msg, List list) {
System.out.p
www.eeworm.com/read/169058/9882492
java filelocking.java
//: io/FileLocking.java
import java.nio.channels.*;
import java.util.concurrent.*;
import java.io.*;
public class FileLocking {
public static void main(String[] args) throws Exception {
www.eeworm.com/read/169058/9882532
java intbufferdemo.java
//: io/IntBufferDemo.java
// Manipulating ints in a ByteBuffer with an IntBuffer
import java.nio.*;
public class IntBufferDemo {
private static final int BSIZE = 1024;
public static void ma