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

    
    
  • 相关阅读:
    Java 面试 --- 3
    Java 面试-- 1
    面试之痛 -- 二叉树 前序 中序 后序
    java 事务
    深入理解mybatis
    hibernate
    mybatis 原理
    spring 原理
    spring aop
    spring 事务
  • 原文地址:https://www.cnblogs.com/luhan7/p/7792799.html
Copyright © 2011-2022 走看看