[Training Video

Car c= new Car(log);
c.print()

class Car{
	def log
	public Car(log){
		this.log=log
	}
	public void print(){
		log.info "hello world"
	}
}
原文地址:https://www.cnblogs.com/MasterMonkInTemple/p/4582691.html