设计模式教程

源代码在线查看: p.java

软件大小: 50257 K
上传用户: liuhong22008
关键词: 设计模式 教程
下载地址: 免注册下载 普通下载 VIP

相关代码

				//: 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);
				  }
				} ///:~			

相关资源