博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java中什么是匿名对象,空参构造方法输出创建了几个匿名对象,属性声明成static...
阅读量:6720 次
发布时间:2019-06-25

本文共 1248 字,大约阅读时间需要 4 分钟。

package com.swift;//使用无参构造方法自动生成对象,序号不断自增public class Person {    private static int count; //如果在定义类时,使用的是静态的属性,则得到的结果是不同的。count生命周期长,与类相同    public int id;    public String name;    public int age;    public String city;    public Person() {        super();        count++;        this.id=count;        this.name="NoName"+count;        this.age=20;        this.city="蜀国";        System.out.println("生产了 "+count+" 个实例化对象");//调用空参构造方法时输出            }    public Person(int id ,String name,int age,String city) {        this.id=id;        this.name=name;        this.age=age;        this.city=city;    }    public int getId() {        return id;    }    public void setId(int id) {        this.id = id;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public int getAge() {        return age;    }    public void setAge(int age) {        this.age = age;    }    public String getCity() {        return city;    }    public void setCity(String city) {        this.city = city;    }    public String getInfo() {        return "The Person is id=" + id + ", name=" + name + ", age=" + age + ", city=" + city ;    }    }

 

转载于:https://www.cnblogs.com/qingyundian/p/7718687.html

你可能感兴趣的文章
检测Gps和网络定位权限
查看>>
maven中使用springboot返回jsp和json数据
查看>>
GRASP设计模式
查看>>
利用ISA发布Outlook Anywhere邮件客户端
查看>>
IDEA Maven 中添加 Jetty插件
查看>>
双向循环链表
查看>>
总有一条适合你|程序猿的女朋友
查看>>
学习方法分享--强哥
查看>>
我的友情链接
查看>>
自动生成公钥并自动写入到特定服务器脚本
查看>>
jsp基础语法【03】_page指令
查看>>
iOS 往工程里添加自定义字体
查看>>
Express cookie-parser
查看>>
scp命令
查看>>
MySQL数据库性能优化之存储引擎选择
查看>>
前端面试大全(一)
查看>>
类加载过程的原理分析
查看>>
Day1_HTML_排版标签
查看>>
基本分词
查看>>
系统提示不能打开文件langbar.chm
查看>>