第一篇csdn博客。
我是一名编程小白,纯纯娱乐。
import java.util.*; /** * @author 马先生 * @version jdk8; * @date 9-14; */ public class text { String animal; //声明变量。 public text(String animal){ //构造方法传参 this.animal=animal; } public void feidge(){ System.out.println("Put the" +"\t" +animal+"\t"+"in the fridge"); // \t空格符。 } public static void main(String[] args) { //运行程序 text t = new text("elephant"); //实例化对象给参数值 t.fridge(); //运行执行方法。 } } //打印输出为:Put the elephant in the fridge(把大象装进冰箱里)