10.23
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.23相关的知识,希望对你有一定的参考价值。
package tyu; public class Person { public int id; public String name; public int age; public String city; public String introduce() { String songs = null; return "我是" + id + ",叫" + name + ", 今年" + age + "岁, 来自" + city +"en "+songs; } public Person(int id,String name,int age,String city) { this.id=id; this.name=name; this.age=age; this.city=city; } }
package tyu; public class DemoPerson { public static void main(String[] args) { Person p1=new Person(110001,"刘备",43,"幽州涿郡涿县"); Person p2=new Person(110002,"关羽",35,"河东郡解县"); Person p3=new Person(110003,"张飞",25,"幽州涿郡"); Person p4=new Person(110004,"诸葛亮",20,"徐州琅琊阳都"); System.out.println(p1.introduce()); System.out.println(p2.introduce()); System.out.println(p3.introduce()); System.out.println(p4.introduce()); } }
以上是关于10.23的主要内容,如果未能解决你的问题,请参考以下文章