代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/171479/5395044
groovy forloopbug.groovy
/**
* @author John Wilson
* @version $Revision: 1.7 $
*/
class ForLoopBug extends GroovyTestCase {
void testBug() {
assertScript( """
def list = []
def a = 1
def b = 5
for (c in a.
www.eeworm.com/read/167890/5451980
java experserver.java
/*
* Created on May 1, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
import java.net.*;
import java.io.*;
impor
www.eeworm.com/read/167133/5467204
java jar.java
/* Program : Jar
Use this class to create .zip and .jar files in Java.
It should work as a drop in replacement for the JDK's jar program.
Copyright : Moses DeJong, dejong@cs.umn.edu, 1998,
www.eeworm.com/read/166998/5471325
java cwapgetexample.java
/**
* JWAP - A Java Implementation of the WAP Protocols
* Copyright (C) 2001-2004 Niko Bender
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of
www.eeworm.com/read/165801/5477882
java servletcontextwriter.java
/*
* $Id: ServletContextWriter.java 54929 2004-10-16 16:38:42Z germuska $
*
* Copyright 2000-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "L
www.eeworm.com/read/165570/5481115
java display.java
public class Display implements Runnable
{
public void run()
{
System.out.println("This is line 1");
System.out.println("This is line 2");
System.out.println("This is line 3");
}
}
www.eeworm.com/read/165570/5481320
java testbits.java
import java.io.*;
import java.util.BitSet;
public class TestBits
{
public TestBits()
{
BitSet a = new BitSet(10);
BitSet b = new BitSet(10);
BitSet c = new BitSet(10);
a.set(0
www.eeworm.com/read/165570/5481474
java login.java
import Commands.LoginCheck;
import Commands.InterfaceBuilder;
import Interfaces.*;
import Sets.*;
/** Initiate interactions with a sequence of logins. */
public class Login
{
/** Input a seq
www.eeworm.com/read/165570/5481475
java tellerinterface.java
package Interfaces;
/** The interface for tellers that issues the appropriate menu. */
public class TellerInterface extends StaffInterface
{
/** Obtain the integer that represents the command t
www.eeworm.com/read/164604/5488948
java hottub.java
package headfirst.command.party;
public class Hottub {
boolean on;
int temperature;
public Hottub() {
}
public void on() {
on = true;
}
public void off() {
on = false;
}
public void