码迷,mamicode.com
首页 > 其他好文 > 详细

类的无参方法(2)

时间:2018-10-14 11:27:54      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:static   怎么   执行   返回值   etag   class   print   font   test   

public class AutoLionTest {
public static void main (String[]args){
//如何创建AutoLion类的对象
/**
* 类的实例化过程
*/
AutoLion lion=new AutoLion();
lion.color="黄色";

//方法执行完毕后,将return的值带过来了
/**
* 怎么接受返回值
*/
String ball=lion.playBall();
int age=lion.getAge();
System.out.println(age);
}
}

类的无参方法(2)

标签:static   怎么   执行   返回值   etag   class   print   font   test   

原文地址:https://www.cnblogs.com/F017/p/9782608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!