软件大小: | 10369 K | ||
上传用户: | SMILE19890517 | ||
关键词: | books understanding collection uploaded | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
//: com:bruceeckel:tools:P.java // The P.rint & P.rintln shorthand. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. package com.bruceeckel.tools; public class P { public static void rint(String s) { System.out.print(s); } public static void rintln(String s) { System.out.println(s); } } ///:~