代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/485355/6559711
java demoncollections.java
//使用Collections类中的方法
import java.util.*;
class DemonCollections {
public static void main(String args[]) {
//创建一个包含3个字符串的列表
List list = Collections.nCopies(2,"dog");
//创建一个数组列表
Array
www.eeworm.com/read/258608/11850356
txt 如4。8.txt
class B
{
void f()
{
this.g(); //对象调用方法f时又调用了方法g。
}
void g()
{
System.out.println("ok");
}
}
www.eeworm.com/read/131846/14122783
java jzpush.java
/**
* Web server PUSH implementation.
* (adapted from pushlets by Just Objects B.V)
*
* JavaZOOM - 2000
* @version 1.0
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* O
www.eeworm.com/read/129125/14264987
java supersuper.java
public class SuperSuper
{
public SuperSuper()
{
System.out.println("SuperSuper Class");
}
}
www.eeworm.com/read/229583/14328801
java fullthreaddump.java
/*
* @(#)FullThreadDump.java 1.5 05/11/17
*
* Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modificati
www.eeworm.com/read/117953/14893653
java tryarray.java
//Copyright (c) 1998, Arthur Gittleman
//This example is provided WITHOUT ANY WARRANTY either expressed or implied.
/* Searches an array for the first occurrence of a value
* input by the user.
www.eeworm.com/read/117953/14893859
java library.java
//Copyright (c) 1998, Arthur Gittleman
//This example is provided WITHOUT ANY WARRANTY either expressed or implied.
/* Uses methods from the Math class
*/
import iopack.Io;
public class Libr
www.eeworm.com/read/216130/15025962
java ssclient.java
// SSClient.java
import java.io.*;
import java.net.*;
class SSClient
{
public static void main (String [] args)
{
String host = "localhost";
// If user specifies a command-line ar
www.eeworm.com/read/211068/15187706
java messagelistenertest.java
/**
* Copyright (c) 2003 Alien Technology Corporation. All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the f
www.eeworm.com/read/171479/5394835
groovy iftest.groovy
class IfTest extends GroovyTestCase {
void testUsingNumber() {
def x = 1
if (x) {
println "${x} is true"
}
else {
fail("should not be fals