zoukankan      html  css  js  c++  java
  • 实类化对象

    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());
         }
                
    
    }

    
    
  • 相关阅读:
    守卫者的挑战(guard)
    pf
    放砖头
    多人背包
    TC-572-D1L2 未完!待续!
    方程的解数
    单词矩阵/贰五语言
    虫食算
    移动玩具
    UVA 125 统计路径条数 FLOYD
  • 原文地址:https://www.cnblogs.com/luhan7/p/7792799.html
Copyright © 2011-2022 走看看