public class Person { private String name; // 姓名 private int age; // 年龄 private String sex; // 性别 private String birthday; // 出生日期 private String constellation; // 星座 public Person(String name,int age,String sex,String birthday,String constellation) { this.name = name; this.age = age; this.sex = sex; this.birthday = birthday; this.constellation = constellation; } public String intro() { return"姓名:"+name+"\n年龄:"+age+"\n性别:"+sex+"\n出生日期:"+birthday+"\n星痤:"+constellation; } }在 Person 类中,首先声明了 5 个修饰符为 private 的成员变量(属性),然后定义了 Person 类的构造方法,该构造方法中需要传递 5 个参数,并将传递的这 5 个参数值赋给该类中的 5 个成员变量。接着创建了 intro() 方法,返回个人基本信息内容。
public class PersonTest { public static void main(String[] args) { Person person = new Person("王洁",21,"女","2016-02-21","狮子座"); String intro = person.intro(); System.out.println(intro); } }在 TestPerson 类中调用了 Person 类的构造方法,并调用了 intro() 方法,从而完成了打印个人基本信息的功能。运行 TestPerson 类,打印出的个人基本信息如下:
姓名:王洁 年龄:21 性别:女 出生日期:2016-02-21 星痤:狮子座
本文链接:http://task.lmcjl.com/news/10538.html