10.23 第六次作业 刘惠惠 this关键字
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | package cn.person.www; public class Prson { public int id; public String name; public int age; public String city; public String introduce() { return "我是" + id + "号, 叫 " + name + ", 今年" + age + "岁了, 来自" + city ; } public person( int id,String name, int age,String city) { this .id=id; //this关键字,表达的含义是当前对象 .表示当前对象的某个调用 this .name=name; this .age=age; this .city=city; } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | package cn.person.www; public class Demoperson { public static void main(String[] args) { // TODO Auto-generated method stub person p1= new person( 001 , "刘备" , 40 , "北京" ); person p2= new person( 002 , "关羽" , 37 , "北京" ); person p3= new person( 003 , "张飞" , 45 , "北京" ); person p4= new person( 004 , "诸葛亮" , 25 , "北京" ); System.out.println(p1.introduce()); System.out.println(p2.introduce()); System.out.println(p3.introduce()); System.out.println(p4.introduce()); } } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步