成员方法
Posted 潘探
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了成员方法相关的知识,希望对你有一定的参考价值。
/*
类的组成:成员变量,成员方法
今天我们又加入了一个新的成员:构造方法。
以后再提类的组成:
成员变量
构造方法
成员方法
根据返回值:
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);
}
}
以上是关于成员方法的主要内容,如果未能解决你的问题,请参考以下文章