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

成员方法

时间:2016-09-21 07:55:18      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

/*
类的组成:成员变量,成员方法
今天我们又加入了一个新的成员:构造方法。
以后再提类的组成:
成员变量
构造方法
成员方法
根据返回值:
void类型
非void类型
形式参数:
空参方法
非空参方法
*/
class Student {
public String getString() {
return "helloworld";
}

public void show() {
System.out.println("show");
}

public void method(String name) {
System.out.println(name);
}

public String function(String s1,String s2) {
return s1+s2;
}
}

class StudentDemo {
public static void main(String[] args) {
//创建对象
Student s = new Student();

//调用无参无返回值方法
s.show();

//调用无参有返回值方法
String result = s.getString();
System.out.println(result);

//调用带参无返回值的方法
s.method("林青霞");

//调用带参带返回值的方法
String result2 = s.function("hello","world");
System.out.println(result2);
}
}

成员方法

标签:

原文地址:http://www.cnblogs.com/panda88/p/5891276.html

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